Skip to content

Commit

Permalink
Update to CIRCT 1.15.0 (#2735)
Browse files Browse the repository at this point in the history
The command line options for CIRCT's firtool command have been updated.
  • Loading branch information
youngar authored Sep 20, 2022
1 parent cc507a8 commit f405015
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
jvm: ["adopt@1.8"]
scala: ["2.13.9", "2.12.17"]
espresso: ["2.4"]
circt: ["sifive/1/14/0"]
circt: ["sifive/1/15/0"]
runs-on: ${{ matrix.system }}

steps:
Expand Down
6 changes: 3 additions & 3 deletions src/main/scala/circt/stage/phases/CIRCT.scala
Original file line number Diff line number Diff line change
Expand Up @@ -132,10 +132,10 @@ class CIRCT extends Phase {
case None => None
}) ++
circtOptions.preserveAggregate.map(_ => "-preserve-public-types=0") ++
(!inferReadWrite).option("-infer-rw=0") ++
(!imcp).option("-imcp=0") ++
(!inferReadWrite).option("-disable-infer-rw") ++
(!imcp).option("-disable-imcp") ++
/* The following options are off by default, so we enable them if they are true. */
(dedup).option("-dedup=1") ++
(dedup).option("-dedup") ++
(blackbox).option("-blackbox-memory") ++
/* Communicate the annotation file through a file. */
(outputAnnotationFileName.map(a => Seq("-annotation-file", a))).getOrElse(Seq.empty) ++
Expand Down

0 comments on commit f405015

Please sign in to comment.