aboutsummaryrefslogtreecommitdiff
path: root/cmake/platform/unix
diff options
context:
space:
mode:
authorclick <click@gonnamakeyou.com>2012-03-25 17:14:08 +0200
committerclick <click@gonnamakeyou.com>2012-03-25 17:14:08 +0200
commite2a92d4bbc1fd0033d368b2fc76a5d99760999a6 (patch)
tree69b048957bc788fb804a794ea2a3cad3da4d05fc /cmake/platform/unix
parent4e6fce11122487bba265e3f34124312d6ea9fdac (diff)
Buildsystem/CMake: Add the ability to avoid linking the core with jemalloc on linux through using the -DNOJEM parameter.
WARNING: This is a developer flag only, and as such NOT documented elsewhere - we need this for valgrind and related tools. Again : YOU HAVE BEEN WARNED! DO NOT USE THIS FLAG UNLESS YOU REALLY KNOW WHAT YOU ARE DOING!
Diffstat (limited to 'cmake/platform/unix')
-rw-r--r--cmake/platform/unix/settings.cmake4
1 files changed, 3 insertions, 1 deletions
diff --git a/cmake/platform/unix/settings.cmake b/cmake/platform/unix/settings.cmake
index 81f438befc9..dd8b7c081f3 100644
--- a/cmake/platform/unix/settings.cmake
+++ b/cmake/platform/unix/settings.cmake
@@ -1,6 +1,8 @@
# Package overloads - Linux
if(CMAKE_SYSTEM_NAME MATCHES "Linux")
- set(JEMALLOC_LIBRARY "jemalloc")
+ if (NOT NOJEM)
+ set(JEMALLOC_LIBRARY "jemalloc")
+ endif()
endif()
# set default configuration directory