mirror of
https://github.com/YosysHQ/yosys
synced 2025-11-01 12:07:51 +00:00
Merge pull request #1226 from YosysHQ/dave/gzip
Add support for gzip'd input files
This commit is contained in:
commit
6538671c84
8 changed files with 70 additions and 13 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