mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 17:44:23 +00:00
32 lines
1.3 KiB
CMake
32 lines
1.3 KiB
CMake
if (OS_FREEBSD OR ARCH_32)
|
|
option (USE_INTERNAL_GPERFTOOLS_LIBRARY "Set to FALSE to use system gperftools (tcmalloc) library instead of bundled" OFF)
|
|
else ()
|
|
option (USE_INTERNAL_GPERFTOOLS_LIBRARY "Set to FALSE to use system gperftools (tcmalloc) library instead of bundled" ${NOT_UNBUNDLED})
|
|
endif ()
|
|
|
|
option (ENABLE_TCMALLOC "Set to TRUE to enable tcmalloc" OFF)
|
|
option (DEBUG_TCMALLOC "Set to TRUE to use debug version of libtcmalloc" OFF)
|
|
|
|
if (ENABLE_TCMALLOC)
|
|
#contrib/libtcmalloc doesnt build debug version, try find in system
|
|
if (DEBUG_TCMALLOC OR NOT USE_INTERNAL_GPERFTOOLS_LIBRARY)
|
|
find_package (Gperftools)
|
|
endif ()
|
|
|
|
if (NOT (GPERFTOOLS_FOUND AND GPERFTOOLS_INCLUDE_DIR AND GPERFTOOLS_TCMALLOC_MINIMAL) AND NOT (OS_FREEBSD OR ARCH_32))
|
|
set (USE_INTERNAL_GPERFTOOLS_LIBRARY 1)
|
|
set (GPERFTOOLS_INCLUDE_DIR "${ClickHouse_SOURCE_DIR}/contrib/libtcmalloc/include")
|
|
set (GPERFTOOLS_TCMALLOC_MINIMAL tcmalloc_minimal_internal)
|
|
endif ()
|
|
|
|
if (GPERFTOOLS_FOUND OR USE_INTERNAL_GPERFTOOLS_LIBRARY)
|
|
set (USE_TCMALLOC 1)
|
|
endif ()
|
|
|
|
if (SANITIZE)
|
|
message (FATAL_ERROR "ENABLE_TCMALLOC is set to true, but it cannot be used with sanitizers")
|
|
endif ()
|
|
|
|
message (STATUS "Using tcmalloc=${USE_TCMALLOC}: ${GPERFTOOLS_INCLUDE_DIR} : ${GPERFTOOLS_TCMALLOC_MINIMAL}")
|
|
endif ()
|