3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-07-17 09:56:40 +00:00

Update gitignore and Makefile

This commit is contained in:
Akash Levy 2024-04-08 22:13:22 -07:00
parent 27f68db831
commit a8fe47ea50
2 changed files with 7 additions and 5 deletions

2
.gitignore vendored
View file

@ -53,3 +53,5 @@ __pycache__
/tests/verilog/roundtrip_proc_1.v /tests/verilog/roundtrip_proc_1.v
/tests/verilog/roundtrip_proc_2.v /tests/verilog/roundtrip_proc_2.v
# Ignore Brewfile locks
Brewfile.lock.json

View file

@ -10,11 +10,11 @@ CONFIG := none
# features (the more the better) # features (the more the better)
ENABLE_TCL := 0 ENABLE_TCL := 0
ENABLE_ABC := 1 ENABLE_ABC := 0
ENABLE_GLOB := 1 ENABLE_GLOB := 1
ENABLE_PLUGINS := 1 ENABLE_PLUGINS := 1
ENABLE_READLINE := 0 ENABLE_READLINE := 0
ENABLE_EDITLINE := 0 ENABLE_EDITLINE := 1
ENABLE_GHDL := 0 ENABLE_GHDL := 0
ENABLE_VERIFIC := 1 ENABLE_VERIFIC := 1
ENABLE_VERIFIC_EDIF := 0 ENABLE_VERIFIC_EDIF := 0
@ -26,7 +26,7 @@ ENABLE_LIBYOSYS := 0
ENABLE_ZLIB := 1 ENABLE_ZLIB := 1
# python wrappers # python wrappers
ENABLE_PYOSYS := 1 ENABLE_PYOSYS := 1
# other configuration flags # other configuration flags
ENABLE_GCOV := 0 ENABLE_GCOV := 0
@ -417,7 +417,7 @@ endif
else else
ifeq ($(ENABLE_EDITLINE),1) ifeq ($(ENABLE_EDITLINE),1)
CXXFLAGS += -DYOSYS_ENABLE_EDITLINE CXXFLAGS += -DYOSYS_ENABLE_EDITLINE
LIBS += -ledit -ltinfo -lbsd LIBS += -ledit
else else
ABCMKARGS += "ABC_USE_NO_READLINE=1" ABCMKARGS += "ABC_USE_NO_READLINE=1"
endif endif
@ -837,7 +837,7 @@ ABCOPT=""
endif endif
# When YOSYS_NOVERIFIC is set as a make variable, also export it to the # When YOSYS_NOVERIFIC is set as a make variable, also export it to the
# enviornment, so that `YOSYS_NOVERIFIC=1 make test` _and_ # environment, so that `YOSYS_NOVERIFIC=1 make test` _and_
# `make test YOSYS_NOVERIFIC=1` will run with verific disabled. # `make test YOSYS_NOVERIFIC=1` will run with verific disabled.
ifeq ($(YOSYS_NOVERIFIC),1) ifeq ($(YOSYS_NOVERIFIC),1)
export YOSYS_NOVERIFIC export YOSYS_NOVERIFIC