[generator] Use tcmalloc for efficient multithreading processing

This commit is contained in:
Anatoly Serdtcev 2019-11-19 14:50:21 +03:00 committed by Sergey Yershov
parent 4a302bee84
commit a88f11131f
2 changed files with 12 additions and 0 deletions

View file

@ -16,6 +16,17 @@ if (NOT SKIP_TESTS)
configure_gtest()
endif()
# TCMalloc Linking
add_library(tcmalloc_config INTERFACE)
option(USE_TCMALLOC "Link TCMalloc memory allocator" ON)
if (USE_TCMALLOC)
find_package(tcmalloc)
target_link_libraries(tcmalloc_config INTERFACE tcmalloc)
endif()
# Code Coverage Configuration
add_library(coverage_config INTERFACE)

View file

@ -9,4 +9,5 @@ geocore_link_libraries(
geocoder
${Boost_PROGRAM_OPTIONS_LIBRARY}
${CMAKE_DL_LIBS}
tcmalloc_config
)