diff options
author | Hoang M. Le <hle@informatik.uni-bremen.de> | 2017-03-21 13:56:05 +0100 |
---|---|---|
committer | Dan Liew <delcypher@gmail.com> | 2017-05-02 11:41:18 +0100 |
commit | af9b2eee77cc5ac79ff647a0e3fa51f464702e31 (patch) | |
tree | c288b9356e2023eaee009e8b7b1a595d6cb7dda2 /CMakeLists.txt | |
parent | 28872c1a0cb8a8f6b835af67719b9cd9aba66d3f (diff) | |
download | klee-af9b2eee77cc5ac79ff647a0e3fa51f464702e31.tar.gz |
use METASMT_REQUIRE_RTTI flag to decide whether we need RTTI
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index ff55ad23..b0f5fd26 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -394,7 +394,7 @@ endif() # RTTI ############################################################################### if (NOT LLVM_ENABLE_RTTI) - if (ENABLE_SOLVER_METASMT) + if (ENABLE_SOLVER_METASMT AND metaSMT_REQUIRE_RTTI) message(WARNING "Not disabling RTTI because metaSMT uses them") # FIXME: Should this be FATAL_ERROR rather than ERROR? message(WARNING |