2017-01-27 20:00:02 +00:00
|
|
|
if (ENABLE_LIBTCMALLOC)
|
2017-02-07 21:28:13 +00:00
|
|
|
#contrib/libtcmalloc doesnt build debug version, try find in system
|
|
|
|
if (DEBUG_LIBTCMALLOC OR NOT USE_INTERNAL_GPERFTOOLS_LIBRARY)
|
2017-01-27 20:00:02 +00:00
|
|
|
find_package (Gperftools REQUIRED)
|
|
|
|
include_directories (${GPERFTOOLS_INCLUDE_DIR})
|
|
|
|
endif ()
|
|
|
|
|
2017-02-07 21:28:13 +00:00
|
|
|
if (NOT (GPERFTOOLS_INCLUDE_DIR AND GPERFTOOLS_TCMALLOC_MINIMAL))
|
2017-02-08 21:35:27 +00:00
|
|
|
set (USE_INTERNAL_GPERFTOOLS_LIBRARY 1)
|
|
|
|
set (GPERFTOOLS_INCLUDE_DIR "${ClickHouse_SOURCE_DIR}/contrib/libtcmalloc/include")
|
|
|
|
set (GPERFTOOLS_TCMALLOC_MINIMAL tcmalloc_minimal_internal)
|
2017-02-06 20:30:19 +00:00
|
|
|
include_directories (BEFORE ${GPERFTOOLS_INCLUDE_DIR})
|
2017-01-27 20:00:02 +00:00
|
|
|
endif ()
|
2017-01-13 11:25:44 +00:00
|
|
|
|
2017-02-06 20:30:19 +00:00
|
|
|
set (USE_TCMALLOC 1)
|
|
|
|
|
2017-02-08 21:35:27 +00:00
|
|
|
message (STATUS "Using tcmalloc=${USE_TCMALLOC}: ${GPERFTOOLS_INCLUDE_DIR} : ${GPERFTOOLS_TCMALLOC_MINIMAL}")
|
2017-01-27 20:00:02 +00:00
|
|
|
endif ()
|