about summary refs log tree commit diff homepage
path: root/tools
diff options
context:
space:
mode:
authorMartinNowack <martin.nowack@gmail.com>2016-07-08 20:31:33 +0200
committerGitHub <noreply@github.com>2016-07-08 20:31:33 +0200
commit784bbc141946e9c77849cbba13563fd8d0b27c0f (patch)
tree872ce7432af8b5b0757fbb71d0d39eb9da107238 /tools
parent7b98c15e45c5d38e9fa9094bbe4f64cd8829675c (diff)
parent00cdc62b7a8df39d13f734ecc77077e427912f64 (diff)
downloadklee-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/Makefile4
-rw-r--r--tools/klee/Makefile4
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