mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-24 01:25:33 +00:00
Add support for reading gzip'd input files
Signed-off-by: David Shah <dave@ds0.me>
This commit is contained in:
parent
d6a289d3e3
commit
933db0410e
6 changed files with 57 additions and 3 deletions
7
Makefile
7
Makefile
|
@ -19,6 +19,7 @@ ENABLE_VERIFIC := 0
|
|||
ENABLE_COVER := 1
|
||||
ENABLE_LIBYOSYS := 0
|
||||
ENABLE_PROTOBUF := 0
|
||||
ENABLE_ZLIB := 1
|
||||
|
||||
# python wrappers
|
||||
ENABLE_PYOSYS := 0
|
||||
|
@ -384,6 +385,12 @@ ifeq ($(ENABLE_GLOB),1)
|
|||
CXXFLAGS += -DYOSYS_ENABLE_GLOB
|
||||
endif
|
||||
|
||||
ifeq ($(ENABLE_ZLIB),1)
|
||||
CXXFLAGS += -DYOSYS_ENABLE_ZLIB
|
||||
LDLIBS += -lz
|
||||
endif
|
||||
|
||||
|
||||
ifeq ($(ENABLE_TCL),1)
|
||||
TCL_VERSION ?= tcl$(shell bash -c "tclsh <(echo 'puts [info tclversion]')")
|
||||
ifeq ($(OS), FreeBSD)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue