diff options
author | Stephan Falke <falke@iti.uka.de> | 2014-04-16 10:11:39 +0200 |
---|---|---|
committer | Stephan Falke <falke@iti.uka.de> | 2014-04-16 10:11:39 +0200 |
commit | 7f4ae9b520aa1f1e5df789d237e66c87bd05db96 (patch) | |
tree | d1b619e4137619483d687b12eefda7124a131b26 /tools | |
parent | 5e0682ee26e02c710abd284f9f965e7a2c9a9f32 (diff) | |
download | klee-7f4ae9b520aa1f1e5df789d237e66c87bd05db96.tar.gz |
Fixed compilation error if uClibc is not used.
Diffstat (limited to 'tools')
-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; |