diff options
author | Peter Collingbourne <peter@pcc.me.uk> | 2010-07-14 18:54:38 +0000 |
---|---|---|
committer | Peter Collingbourne <peter@pcc.me.uk> | 2010-07-14 18:54:38 +0000 |
commit | ca22c4dee94552f65e6044341b0365a21d794d65 (patch) | |
tree | d952573658c01dd894005d52afce598197e946a7 /Makefile.common | |
parent | 59c0dedbc949433afeac482e8243119240076026 (diff) | |
download | klee-ca22c4dee94552f65e6044341b0365a21d794d65.tar.gz |
Add option to use an external version of STP
This patch adds a new configure option, --with-stp, which configures KLEE to use an external version of STP instead of the version in the source tree. It includes documentation referring users to the STP download location. git-svn-id: https://llvm.org/svn/llvm-project/klee/trunk@108347 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Makefile.common')
-rw-r--r-- | Makefile.common | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/Makefile.common b/Makefile.common index f3a8f8be..ff83602c 100644 --- a/Makefile.common +++ b/Makefile.common @@ -26,8 +26,13 @@ LLVMCC := $(LLVMGCC) LLVMCXX := $(LLVMGXX) endif -LD.Flags += -L$(PROJ_SRC_ROOT)/stp/lib -CXX.Flags += -I$(PROJ_SRC_ROOT)/stp/include +ifeq ($(ENABLE_EXT_STP),1) + LD.Flags += -L$(STP_ROOT)/lib + CXX.Flags += -I$(STP_ROOT)/include +else + LD.Flags += -L$(PROJ_SRC_ROOT)/stp/lib + CXX.Flags += -I$(PROJ_SRC_ROOT)/stp/include +endif CXX.Flags += -DKLEE_DIR=\"$(PROJ_OBJ_ROOT)\" # For STP. |