diff options
author | Dan Liew <daniel.liew@imperial.ac.uk> | 2016-01-14 16:03:33 +0000 |
---|---|---|
committer | Dan Liew <daniel.liew@imperial.ac.uk> | 2016-02-10 20:56:22 +0000 |
commit | e6ba74cf608cf733916f0df2471c6a5fc5a804cf (patch) | |
tree | 97511f9e9e2d412e58099b96d03368363265f3d0 /Makefile.config.in | |
parent | 1e22c1d667e36a84c6212e68aa1eb00b81c811e1 (diff) | |
download | klee-e6ba74cf608cf733916f0df2471c6a5fc5a804cf.tar.gz |
Teach the configure script to configure the build to use the Z3 SMT
solver using the new ``--with-z3=`` option.
Diffstat (limited to 'Makefile.config.in')
-rw-r--r-- | Makefile.config.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile.config.in b/Makefile.config.in index 745b4cc1..f92f453f 100644 --- a/Makefile.config.in +++ b/Makefile.config.in @@ -36,6 +36,10 @@ STP_LDFLAGS := @STP_LDFLAGS@ ENABLE_METASMT := @ENABLE_METASMT@ METASMT_ROOT := @METASMT_ROOT@ +ENABLE_Z3 := @ENABLE_Z3@ +Z3_CFLAGS := @Z3_CFLAGS@ +Z3_LDFLAGS := @Z3_LDFLAGS@ + ENABLE_POSIX_RUNTIME := @ENABLE_POSIX_RUNTIME@ ENABLE_UCLIBC := @ENABLE_UCLIBC@ |