about summary refs log tree commit diff homepage
path: root/tools
diff options
context:
space:
mode:
authorDan Liew <daniel.liew@imperial.ac.uk>2013-12-15 19:08:46 +0000
committerDan Liew <daniel.liew@imperial.ac.uk>2013-12-21 23:22:46 +0000
commit492de06e578a76a8d6b8311dd7c1c1c440623072 (patch)
tree1c3eccd76351844c4a5dff986e7ecf8732062d6d /tools
parent857831d18708ada4590c511494d3ae5f94cf6a6a (diff)
downloadklee-492de06e578a76a8d6b8311dd7c1c1c440623072.tar.gz
Revert "Patch from Ben Gras which "makes Klee look for the libraries in the"
This reverts commit 1715ee37118cdf8785a1dd70d812b6a88ad623e7.

Conflicts:
	Makefile.common

Future commits are going to add a more way elegant to handle the
search for libraries in build/install directory.
Diffstat (limited to 'tools')
-rw-r--r--tools/klee/main.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/tools/klee/main.cpp b/tools/klee/main.cpp
index 3616bfa6..9d5a1b1d 100644
--- a/tools/klee/main.cpp
+++ b/tools/klee/main.cpp
@@ -1227,14 +1227,7 @@ int main(int argc, char **argv, char **envp) {
       return r;
   }
 
-#if defined(KLEE_LIB_DIR) && defined(USE_KLEE_LIB_DIR)
-  /* KLEE_LIB_DIR is the lib dir of installed files as opposed to 
-   * where libs in the klee source tree are generated.
-   */
-  llvm::sys::Path LibraryDir(KLEE_LIB_DIR);
-#else
   llvm::sys::Path LibraryDir(KLEE_DIR "/" RUNTIME_CONFIGURATION "/lib");
-#endif
   Interpreter::ModuleOptions Opts(LibraryDir.c_str(),
                                   /*Optimize=*/OptimizeModule, 
                                   /*CheckDivZero=*/CheckDivZero,