diff options
author | Martin Nowack <martin.nowack@gmail.com> | 2013-08-27 22:00:23 +0200 |
---|---|---|
committer | Martin Nowack <martin.nowack@gmail.com> | 2013-08-28 08:54:50 +0200 |
commit | 45fa391391b57beecefd2cbcf3ce243d8aaea4f7 (patch) | |
tree | af25efa1a264872b14d98bf99245ac693083eb6b /Makefile.rules | |
parent | 6c68f4ba60b860e83b8ee08b97f18f6a6cc29156 (diff) | |
download | klee-45fa391391b57beecefd2cbcf3ce243d8aaea4f7.tar.gz |
Link against shared library from LLVM correctly
Searching for the LLVM library was conducted in the Klee project. This patch searches in the LLVM build directory.
Diffstat (limited to 'Makefile.rules')
-rw-r--r-- | Makefile.rules | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.rules b/Makefile.rules index f01649a9..ef72c06c 100644 --- a/Makefile.rules +++ b/Makefile.rules @@ -941,7 +941,7 @@ LLVMLibsOptions += -Wl,--enable-auto-import,--enable-runtime-pseudo-reloc \ -L $(SharedLibDir) endif LLVMLibsOptions += -lLLVM-$(LLVMVersion) -LLVMLibsPaths += $(SharedLibDir)/$(SharedPrefix)LLVM-$(LLVMVersion)$(SHLIBEXT) +LLVMLibsPaths += $(LLVMSharedLibDir)/$(SharedPrefix)LLVM-$(LLVMVersion)$(SHLIBEXT) else ifndef NO_LLVM_CONFIG |