mirror of https://github.com/YosysHQ/yosys.git
Merge pull request #5044 from RonxBulld/main
Fixed the problem of not calling abc correctly when using libyosys.so
This commit is contained in:
commit
a628f84ec0
4
Makefile
4
Makefile
|
|
@ -396,6 +396,10 @@ ifeq ($(DISABLE_ABC_THREADS),1)
|
||||||
ABCMKARGS += "ABC_USE_NO_PTHREADS=1"
|
ABCMKARGS += "ABC_USE_NO_PTHREADS=1"
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifeq ($(LINK_ABC),1)
|
||||||
|
ABCMKARGS += "ABC_USE_PIC=1"
|
||||||
|
endif
|
||||||
|
|
||||||
ifeq ($(DISABLE_SPAWN),1)
|
ifeq ($(DISABLE_SPAWN),1)
|
||||||
CXXFLAGS += -DYOSYS_DISABLE_SPAWN
|
CXXFLAGS += -DYOSYS_DISABLE_SPAWN
|
||||||
endif
|
endif
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue