diff options
author | Cristian Cadar <c.cadar@imperial.ac.uk> | 2016-12-10 22:33:45 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-10 22:33:45 +0000 |
commit | 9670eb8797304c342a9c778a44506260162fdff9 (patch) | |
tree | 93c9190aa485d53ab6cc73e575e81c6b3fcb7b80 | |
parent | d7b03c98210d056bdc9cbf75156c6758b0dfa712 (diff) | |
parent | 8b0ac06e13ee67b983bbb2491102971cc52d5391 (diff) | |
download | klee-9670eb8797304c342a9c778a44506260162fdff9.tar.gz |
Merge pull request #537 from delcypher/cmake_fix_tcmalloc_rebuild
[CMake] Fix bug with enabling and then disabling TCMalloc support
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 68e83733..2dc2cc2f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -432,6 +432,8 @@ if (ENABLE_TCMALLOC) message(FATAL_ERROR "Can't find \"${TCMALLOC_HEADER}\"") endif() else() + unset(HAVE_GPERFTOOLS_MALLOC_EXTENSION_H) + unset(HAVE_GPERFTOOLS_MALLOC_EXTENSION_H CACHE) message(STATUS "TCMalloc support disabled") endif() |