diff options
author | Martin Nowack <m.nowack@imperial.ac.uk> | 2023-10-30 12:03:22 +0000 |
---|---|---|
committer | Cristian Cadar <c.cadar@imperial.ac.uk> | 2024-02-08 13:17:19 +0000 |
commit | bdc30e5427e9fa4a6fc7c8e0c21ededa8ec8c6a4 (patch) | |
tree | 285c1dca792db68f2598a68b7c9f5578b9562354 /runtime | |
parent | f9cb81fa27ca6ae4fef1c22081040071d20e4413 (diff) | |
download | klee-bdc30e5427e9fa4a6fc7c8e0c21ededa8ec8c6a4.tar.gz |
Explicitly build KLEE's exception handling runtime with C++11
Currently, we assume C++11 support being used to by the tested software. This needs to change if newer C++ standards should be supported.
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/klee-eh-cxx/CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/runtime/klee-eh-cxx/CMakeLists.txt b/runtime/klee-eh-cxx/CMakeLists.txt index 470e3f0a..b51b8544 100644 --- a/runtime/klee-eh-cxx/CMakeLists.txt +++ b/runtime/klee-eh-cxx/CMakeLists.txt @@ -17,6 +17,7 @@ set(ADDITIONAL_CXX_FLAGS -I "${KLEE_LIBCXXABI_SRC_DIR}/src" -I "${KLEE_LIBCXXABI_SRC_DIR}/include" -I "${KLEE_LIBCXX_INCLUDE_PATH}" + -std=c++11 ) if (KLEE_LIBCXX_PLATFORM_INCLUDE_PATH) |