diff options
author | Dan Liew <delcypher@gmail.com> | 2014-04-16 17:20:30 +0100 |
---|---|---|
committer | Dan Liew <delcypher@gmail.com> | 2014-04-16 17:20:30 +0100 |
commit | 7f44b9346356c91f633c6de6939c33a45756ae7e (patch) | |
tree | e3e0f9ba2f361cb19136f6f4a19e3036003b87dd | |
parent | 5cfeffaa50050cda735de24fb6a821dacd157d26 (diff) | |
parent | 7f4ae9b520aa1f1e5df789d237e66c87bd05db96 (diff) | |
download | klee-7f44b9346356c91f633c6de6939c33a45756ae7e.tar.gz |
Merge pull request #111 from s-falke/no_uclibc
Fixed compilation error if uClibc is not used.
-rw-r--r-- | tools/klee/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/klee/main.cpp b/tools/klee/main.cpp index a2268c83..07c33f2a 100644 --- a/tools/klee/main.cpp +++ b/tools/klee/main.cpp @@ -1000,7 +1000,7 @@ static char *format_tdiff(char *buf, long seconds) } #ifndef SUPPORT_KLEE_UCLIBC -static llvm::Module *linkWithUclibc(llvm::Module *mainModule, llvm::sys::Path libDir) { +static llvm::Module *linkWithUclibc(llvm::Module *mainModule, StringRef libDir) { fprintf(stderr, "error: invalid libc, no uclibc support!\n"); exit(1); return 0; |