Skip to content

Commit

Permalink
[Makefile] Don't run Yosys in parallel
Browse files Browse the repository at this point in the history
  • Loading branch information
ushitora-anqou committed May 1, 2020
1 parent 1d7c995 commit 8e96dd5
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,10 @@ build/cahp-diamond/vsp-core-no-ram-rom.json: build/cahp-diamond build/yosys
cd build/cahp-diamond && \
../yosys/yosys build-no-ram-rom.ys

build/cahp-emerald/vsp-core-no-ram-rom.json: build/cahp-emerald build/yosys
# NOTE: build/cahp-diamond/vsp-core-no-ram-rom.json is "fake" dependency;
# Without this the builds for Diamond and Emerald will run in parallel
# to consume too much memory.
build/cahp-emerald/vsp-core-no-ram-rom.json: build/cahp-emerald build/yosys build/cahp-diamond/vsp-core-no-ram-rom.json
cd build/cahp-emerald && \
../yosys/yosys build-no-ram-rom.ys

Expand Down

0 comments on commit 8e96dd5

Please sign in to comment.