mirror of https://github.com/YosysHQ/yosys.git
Force abc to be linked statically and without threads in emscripten
This commit is contained in:
parent
9763e4d830
commit
d9ef793430
5
Makefile
5
Makefile
|
@ -178,6 +178,11 @@ EXE = .js
|
|||
TARGETS := $(filter-out yosys-config,$(TARGETS))
|
||||
EXTRA_TARGETS += yosysjs-$(YOSYS_VER).zip
|
||||
|
||||
ifeq ($(ENABLE_ABC),1)
|
||||
LINK_ABC := 1
|
||||
DISABLE_ABC_THREADS := 1
|
||||
endif
|
||||
|
||||
viz.js:
|
||||
wget -O viz.js.part https://github.com/mdaines/viz.js/releases/download/0.0.3/viz.js
|
||||
mv viz.js.part viz.js
|
||||
|
|
Loading…
Reference in New Issue