Skip to content

Commit

Permalink
Makefile: bump chisel to v3.4.3 (OpenXiangShan#744)
Browse files Browse the repository at this point in the history
Bump chisel to v3.4.3 and re-add `-X verilog` parameter for chisel runs.
Our transform seems to have conflicts when `-X verilog` is not set.
  • Loading branch information
poemonsense authored Apr 2, 2021
1 parent c0bc1ee commit 96dd1a2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ SIM_TOP_V = $(BUILD_DIR)/$(SIM_TOP).v
$(SIM_TOP_V): $(SCALA_FILE) $(TEST_FILE)
mkdir -p $(@D)
date -R
mill XiangShan.test.runMain $(SIMTOP) -td $(@D) --full-stacktrace --output-file $(@F) --infer-rw --repl-seq-mem -c:$(SIMTOP):-o:$(@D)/$(@F).conf $(SIM_ARGS)
mill XiangShan.test.runMain $(SIMTOP) -X verilog -td $(@D) --full-stacktrace --output-file $(@F) --infer-rw --repl-seq-mem -c:$(SIMTOP):-o:$(@D)/$(@F).conf $(SIM_ARGS)
$(MEM_GEN) $(@D)/$(@F).conf --output_file $(@D)/$(@F).sram.v
@git log -n 1 >> .__head__
@git diff >> .__diff__
Expand Down
2 changes: 1 addition & 1 deletion build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ trait CommonModule extends ScalaModule {
}

val chisel = Agg(
ivy"edu.berkeley.cs::chisel3:3.4.2"
ivy"edu.berkeley.cs::chisel3:3.4.3"
)

object `api-config-chipsalliance` extends CommonModule {
Expand Down

0 comments on commit 96dd1a2

Please sign in to comment.