diff options
author | MartinNowack <martin.nowack@gmail.com> | 2016-07-08 20:31:33 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-08 20:31:33 +0200 |
commit | 784bbc141946e9c77849cbba13563fd8d0b27c0f (patch) | |
tree | 872ce7432af8b5b0757fbb71d0d39eb9da107238 /tools | |
parent | 7b98c15e45c5d38e9fa9094bbe4f64cd8829675c (diff) | |
parent | 00cdc62b7a8df39d13f734ecc77077e427912f64 (diff) | |
download | klee-784bbc141946e9c77849cbba13563fd8d0b27c0f.tar.gz |
Merge pull request #391 from MartinNowack/feat_zipstream_compress
Support gzip-based compression of raw_outstreams
Diffstat (limited to 'tools')
-rw-r--r-- | tools/kleaver/Makefile | 4 | ||||
-rw-r--r-- | tools/klee/Makefile | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/tools/kleaver/Makefile b/tools/kleaver/Makefile index 1631dda6..a2250fe0 100644 --- a/tools/kleaver/Makefile +++ b/tools/kleaver/Makefile @@ -32,3 +32,7 @@ include $(PROJ_SRC_ROOT)/MetaSMT.mk ifeq ($(HAVE_TCMALLOC),1) LIBS += $(TCMALLOC_LIB) endif + +ifeq ($(HAVE_ZLIB),1) + LIBS += -lz +endif diff --git a/tools/klee/Makefile b/tools/klee/Makefile index 676507e0..8d50403f 100644 --- a/tools/klee/Makefile +++ b/tools/klee/Makefile @@ -33,3 +33,7 @@ include $(PROJ_SRC_ROOT)/MetaSMT.mk ifeq ($(HAVE_TCMALLOC),1) LIBS += $(TCMALLOC_LIB) endif + +ifeq ($(HAVE_ZLIB),1) + LIBS += -lz +endif \ No newline at end of file |