diff options
author | Cristian Cadar <c.cadar@imperial.ac.uk> | 2013-10-11 11:55:23 +0100 |
---|---|---|
committer | Cristian Cadar <c.cadar@imperial.ac.uk> | 2013-10-11 11:55:23 +0100 |
commit | bda5951b4234fa67a75431162e5edc4acbb4af8b (patch) | |
tree | b16f2d7d57e507d9a71a08d8e7c4373f9a2446ef /Makefile.config.in | |
parent | de6cc3646fa27a159015fd2a6c80a8d5c43715a6 (diff) | |
download | klee-bda5951b4234fa67a75431162e5edc4acbb4af8b.tar.gz |
Fixed compilation on LLVM 2.9. irreader should be linked only for LLVM >= 3.3
Diffstat (limited to 'Makefile.config.in')
-rw-r--r-- | Makefile.config.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile.config.in b/Makefile.config.in index 1634238b..cd209127 100644 --- a/Makefile.config.in +++ b/Makefile.config.in @@ -11,6 +11,9 @@ LLVM_SRC_ROOT = @LLVM_SRC@ # (this is *not* the same as OBJ_ROOT as defined in LLVM's Makefile.config). LLVM_OBJ_ROOT = @LLVM_OBJ@ +LLVM_VERSION_MAJOR = @LLVM_VERSION_MAJOR@ +LLVM_VERSION_MINOR = @LLVM_VERSION_MINOR@ + # Set this to the build mode used to build LLVM (not necessarily the same # as the build mode used for KLEE) LLVM_BUILD_MODE = @LLVM_BUILD_MODE@ |