aboutsummaryrefslogtreecommitdiff
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
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!
-rw-r--r--cmake/platform/unix/settings.cmake4
-rw-r--r--cmake/showoptions.cmake8
-rw-r--r--dep/CMakeLists.txt4
-rw-r--r--src/server/worldserver/CMakeLists.txt1
4 files changed, 12 insertions, 5 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
diff --git a/cmake/showoptions.cmake b/cmake/showoptions.cmake
index 31e1b412b32..9cac1d82f4a 100644
--- a/cmake/showoptions.cmake
+++ b/cmake/showoptions.cmake
@@ -78,4 +78,10 @@ if( WIN32 )
endif()
endif( WIN32 )
-message("")
+if ( NOJEM )
+ message("")
+ message("*** WARNING: jemalloc linking has been disabled!")
+ message("*** Please note that this is for DEBUGGING WITH VALGRIND only!")
+ message("*** DO NOT DISABLE IT UNLESS YOU KNOW WHAT YOU'RE DOING!")
+endif()
+ message("")
diff --git a/dep/CMakeLists.txt b/dep/CMakeLists.txt
index 9c13ad59bc5..d658ba43ffe 100644
--- a/dep/CMakeLists.txt
+++ b/dep/CMakeLists.txt
@@ -15,8 +15,8 @@ elseif( MSVC )
endif()
if(CMAKE_SYSTEM_NAME MATCHES "Linux")
- if(SERVERS)
- add_subdirectory(jemalloc)
+ if(SERVERS AND NOT NOJEM)
+ add_subdirectory(jemalloc)
endif()
endif()
diff --git a/src/server/worldserver/CMakeLists.txt b/src/server/worldserver/CMakeLists.txt
index b75dfcfc064..28aab37d1dd 100644
--- a/src/server/worldserver/CMakeLists.txt
+++ b/src/server/worldserver/CMakeLists.txt
@@ -201,4 +201,3 @@ if( USE_COREPCH )
add_native_precompiled_header(worldserver ${CMAKE_CURRENT_SOURCE_DIR}/PrecompiledHeaders/worldPCH)
endif()
endif()
-