about summary refs log tree commit diff homepage
diff options
context:
space:
mode:
authorCristian Cadar <c.cadar@imperial.ac.uk>2016-12-10 22:33:45 +0000
committerGitHub <noreply@github.com>2016-12-10 22:33:45 +0000
commit9670eb8797304c342a9c778a44506260162fdff9 (patch)
tree93c9190aa485d53ab6cc73e575e81c6b3fcb7b80
parentd7b03c98210d056bdc9cbf75156c6758b0dfa712 (diff)
parent8b0ac06e13ee67b983bbb2491102971cc52d5391 (diff)
downloadklee-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.txt2
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()