diff options
author | robot-piglet <robot-piglet@yandex-team.com> | 2023-04-10 14:42:59 +0300 |
---|---|---|
committer | robot-piglet <robot-piglet@yandex-team.com> | 2023-04-10 14:42:59 +0300 |
commit | e667f88560ba27a376f893d209649db9afe1c076 (patch) | |
tree | 6fcce258671a055a86817d2a573d5fda7c21636e /tools/rescompiler | |
parent | f8c5aa26b39bc589cff86b4ecd95a18a49421c6d (diff) | |
download | ydb-e667f88560ba27a376f893d209649db9afe1c076.tar.gz |
Intermediate changes
Diffstat (limited to 'tools/rescompiler')
4 files changed, 13 insertions, 5 deletions
diff --git a/tools/rescompiler/bin/CMakeLists.darwin-x86_64.txt b/tools/rescompiler/bin/CMakeLists.darwin-x86_64.txt index 348117b883..2c21276045 100644 --- a/tools/rescompiler/bin/CMakeLists.darwin-x86_64.txt +++ b/tools/rescompiler/bin/CMakeLists.darwin-x86_64.txt @@ -11,7 +11,6 @@ add_executable(rescompiler) target_link_libraries(rescompiler PUBLIC contrib-libs-cxxsupp yutil - cpp-malloc-system library-cpp-cpuid_check library-cpp-resource ) @@ -23,4 +22,7 @@ target_link_options(rescompiler PRIVATE target_sources(rescompiler PRIVATE ${CMAKE_SOURCE_DIR}/tools/rescompiler/main.cpp ) +target_allocator(rescompiler + system_allocator +) vcs_info(rescompiler) diff --git a/tools/rescompiler/bin/CMakeLists.linux-aarch64.txt b/tools/rescompiler/bin/CMakeLists.linux-aarch64.txt index bd9f8ffd5c..149f6f4225 100644 --- a/tools/rescompiler/bin/CMakeLists.linux-aarch64.txt +++ b/tools/rescompiler/bin/CMakeLists.linux-aarch64.txt @@ -12,7 +12,6 @@ target_link_libraries(rescompiler PUBLIC contrib-libs-linux-headers contrib-libs-cxxsupp yutil - cpp-malloc-jemalloc library-cpp-resource ) target_link_options(rescompiler PRIVATE @@ -28,4 +27,7 @@ target_link_options(rescompiler PRIVATE target_sources(rescompiler PRIVATE ${CMAKE_SOURCE_DIR}/tools/rescompiler/main.cpp ) +target_allocator(rescompiler + cpp-malloc-jemalloc +) vcs_info(rescompiler) diff --git a/tools/rescompiler/bin/CMakeLists.linux-x86_64.txt b/tools/rescompiler/bin/CMakeLists.linux-x86_64.txt index 6fa1888e8f..dda1f62fe3 100644 --- a/tools/rescompiler/bin/CMakeLists.linux-x86_64.txt +++ b/tools/rescompiler/bin/CMakeLists.linux-x86_64.txt @@ -12,8 +12,6 @@ target_link_libraries(rescompiler PUBLIC contrib-libs-linux-headers contrib-libs-cxxsupp yutil - cpp-malloc-tcmalloc - libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check library-cpp-resource ) @@ -30,4 +28,8 @@ target_link_options(rescompiler PRIVATE target_sources(rescompiler PRIVATE ${CMAKE_SOURCE_DIR}/tools/rescompiler/main.cpp ) +target_allocator(rescompiler + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache +) vcs_info(rescompiler) diff --git a/tools/rescompiler/bin/CMakeLists.windows-x86_64.txt b/tools/rescompiler/bin/CMakeLists.windows-x86_64.txt index 1b27d3e7ec..5b85c1b807 100644 --- a/tools/rescompiler/bin/CMakeLists.windows-x86_64.txt +++ b/tools/rescompiler/bin/CMakeLists.windows-x86_64.txt @@ -11,11 +11,13 @@ add_executable(rescompiler) target_link_libraries(rescompiler PUBLIC contrib-libs-cxxsupp yutil - cpp-malloc-system library-cpp-cpuid_check library-cpp-resource ) target_sources(rescompiler PRIVATE ${CMAKE_SOURCE_DIR}/tools/rescompiler/main.cpp ) +target_allocator(rescompiler + system_allocator +) vcs_info(rescompiler) |