Skip to content
This repository was archived by the owner on Aug 20, 2024. It is now read-only.

Fix: Default make recipe not dump firrtl file. #67

Merged
merged 1 commit into from
Jun 3, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ sbt:
compile: $(gen_dir)/Tile.sv

$(gen_dir)/Tile.sv: $(wildcard $(src_dir)/scala/*.scala)
$(SBT) $(SBT_FLAGS) "run --target-dir=$(gen_dir)"
$(SBT) $(SBT_FLAGS) "run --target-dir=$(gen_dir) --dump-fir"

CXXFLAGS += -std=c++14 -Wall -Wno-unused-variable

Expand Down
Loading