diff options
author | Peter Collingbourne <peter@pcc.me.uk> | 2011-05-18 21:48:50 +0000 |
---|---|---|
committer | Peter Collingbourne <peter@pcc.me.uk> | 2011-05-18 21:48:50 +0000 |
commit | 71d1412619448aa780f0864b976b06b15eb6a4e1 (patch) | |
tree | 911e9dfb7eaa38d68884649ff578e7df00ce0d3f /Makefile.common | |
parent | 4ea784dd4deaed11dffec28e7dab0f1eb3c4afc0 (diff) | |
download | klee-71d1412619448aa780f0864b976b06b15eb6a4e1.tar.gz |
Use local Makefile.rules
This patch changes the build system to use its own copy of Makefile.rules (taken from a recent svn snapshot). Also added a --with-llvm-build-mode flag and changed the default runtime library configuration to Release+Asserts. Makefile.rules was modified to support --with-llvm-build-mode and older versions of LLVM (tested 2.7 and 2.8). git-svn-id: https://llvm.org/svn/llvm-project/klee/trunk@131584 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Makefile.common')
-rw-r--r-- | Makefile.common | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.common b/Makefile.common index 8bd74ae0..6556d3c7 100644 --- a/Makefile.common +++ b/Makefile.common @@ -18,7 +18,7 @@ override ENABLE_PROFILING := $(RUNTIME_ENABLE_PROFILING) override ENABLE_COVERAGE := $(RUNTIME_ENABLE_COVERAGE) endif -include $(LLVM_SRC_ROOT)/Makefile.rules +include $(PROJ_SRC_ROOT)/Makefile.rules # LLVMCC was added in 2.7. ifeq ($(LLVMCC),) |