diff options
author | Martin Nowack <martin.nowack@gmail.com> | 2013-09-18 12:38:32 +0200 |
---|---|---|
committer | Martin Nowack <martin.nowack@gmail.com> | 2013-09-18 12:38:32 +0200 |
commit | e9b814eda7a590af35959cd11ceeb7bef7496789 (patch) | |
tree | 05126b4a5a9294a7f04c1d8d683dde90f772b15c /runtime/POSIX/fd_32.c | |
parent | 1e63f37178748da804aae3a4735fca73dee5d53a (diff) | |
download | klee-e9b814eda7a590af35959cd11ceeb7bef7496789.tar.gz |
Compile separate version of fd files only for LLVM 3.3 or higher
Diffstat (limited to 'runtime/POSIX/fd_32.c')
-rw-r--r-- | runtime/POSIX/fd_32.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/runtime/POSIX/fd_32.c b/runtime/POSIX/fd_32.c index 20587b42..f2f384fb 100644 --- a/runtime/POSIX/fd_32.c +++ b/runtime/POSIX/fd_32.c @@ -17,7 +17,8 @@ #endif #endif -#ifdef ENV32 +#include "klee/Config/Version.h" +#if defined(ENV32) || (LLVM_VERSION_CODE < LLVM_VERSION(3, 3)) #define _LARGEFILE64_SOURCE #include "fd.h" |