diff options
author | Julian Büning <julian.buening@rwth-aachen.de> | 2020-09-04 22:04:57 +0200 |
---|---|---|
committer | MartinNowack <2443641+MartinNowack@users.noreply.github.com> | 2020-10-12 11:19:24 +0100 |
commit | 9c445a83bc03ca4a0335e98704feee44183831a6 (patch) | |
tree | 868034bc5ed0406a6bced20f30340146ca079b50 /runtime/CMakeLists.txt | |
parent | e94d9c6268cb75ff317a42e26f33c419e6686b5d (diff) | |
download | klee-9c445a83bc03ca4a0335e98704feee44183831a6.tar.gz |
Exception handling only for LLVM >= 8.0.0
Diffstat (limited to 'runtime/CMakeLists.txt')
-rw-r--r-- | runtime/CMakeLists.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/CMakeLists.txt b/runtime/CMakeLists.txt index 8e7e7226..88a3faf8 100644 --- a/runtime/CMakeLists.txt +++ b/runtime/CMakeLists.txt @@ -32,7 +32,7 @@ else() set(BUILD_POSIX_RUNTIME 0) endif() -if (ENABLE_KLEE_LIBCXX) +if (ENABLE_KLEE_EH_CXX) set(BUILD_KLEE_EH_CXX 1) else() set(BUILD_KLEE_EH_CXX 0) @@ -54,7 +54,7 @@ set(BITCODE_LIBRARIES "Intrinsic" "klee-libc" "FreeStanding") if (ENABLE_POSIX_RUNTIME) list(APPEND BITCODE_LIBRARIES "POSIX") endif() -if (ENABLE_KLEE_LIBCXX) +if (ENABLE_KLEE_EH_CXX) list(APPEND BITCODE_LIBRARIES "klee-eh-cxx") endif() foreach (bl ${BITCODE_LIBRARIES}) @@ -145,7 +145,7 @@ if (ENABLE_POSIX_RUNTIME) "${KLEE_RUNTIME_DIRECTORY}/libkleeRuntimePOSIX.bca") endif() -if (ENABLE_KLEE_LIBCXX) +if (ENABLE_KLEE_EH_CXX) list(APPEND RUNTIME_FILES_TO_INSTALL "${KLEE_RUNTIME_DIRECTORY}/libklee-eh-cxx.bca") endif() |