diff options
author | Julian Büning <julian.buening@comsys.rwth-aachen.de> | 2020-12-18 13:25:47 +0100 |
---|---|---|
committer | Cristian Cadar <c.cadar@imperial.ac.uk> | 2021-02-16 18:37:16 +0000 |
commit | b2157ca524c7c6ab8074f05b4c735a4fc237eb7d (patch) | |
tree | b8b2f7c8bfabba13105ace038e2d2b4c561586ec /tools | |
parent | 5f08b024bef12c3312d1e75f2c2ec5e5f5e0361f (diff) | |
download | klee-b2157ca524c7c6ab8074f05b4c735a4fc237eb7d.tar.gz |
add klee_messages for C++ exception handling support
otherwise, it is hard to tell whether EH support is available or not
Diffstat (limited to 'tools')
-rw-r--r-- | tools/klee/main.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/klee/main.cpp b/tools/klee/main.cpp index 1bcdedbb..8d9a7c16 100644 --- a/tools/klee/main.cpp +++ b/tools/klee/main.cpp @@ -1305,6 +1305,9 @@ int main(int argc, char **argv, char **envp) { loadedModules, errorMsg)) klee_error("error loading libklee-eh-cxx '%s': %s", EhCxxPath.c_str(), errorMsg.c_str()); + klee_message("NOTE: Enabled runtime support for C++ exceptions"); +#else + klee_message("NOTE: KLEE was not compiled with support for C++ exceptions"); #endif #endif } |