aboutsummaryrefslogtreecommitdiffstats
path: root/tools/enum_parser
diff options
context:
space:
mode:
authorrobot-piglet <robot-piglet@yandex-team.com>2023-04-10 14:42:59 +0300
committerrobot-piglet <robot-piglet@yandex-team.com>2023-04-10 14:42:59 +0300
commite667f88560ba27a376f893d209649db9afe1c076 (patch)
tree6fcce258671a055a86817d2a573d5fda7c21636e /tools/enum_parser
parentf8c5aa26b39bc589cff86b4ecd95a18a49421c6d (diff)
downloadydb-e667f88560ba27a376f893d209649db9afe1c076.tar.gz
Intermediate changes
Diffstat (limited to 'tools/enum_parser')
-rw-r--r--tools/enum_parser/enum_parser/CMakeLists.darwin-x86_64.txt4
-rw-r--r--tools/enum_parser/enum_parser/CMakeLists.linux-aarch64.txt4
-rw-r--r--tools/enum_parser/enum_parser/CMakeLists.linux-x86_64.txt6
-rw-r--r--tools/enum_parser/enum_parser/CMakeLists.windows-x86_64.txt4
4 files changed, 13 insertions, 5 deletions
diff --git a/tools/enum_parser/enum_parser/CMakeLists.darwin-x86_64.txt b/tools/enum_parser/enum_parser/CMakeLists.darwin-x86_64.txt
index 9b7da6f1740..59d95687ab0 100644
--- a/tools/enum_parser/enum_parser/CMakeLists.darwin-x86_64.txt
+++ b/tools/enum_parser/enum_parser/CMakeLists.darwin-x86_64.txt
@@ -11,7 +11,6 @@ add_executable(enum_parser)
target_link_libraries(enum_parser PUBLIC
contrib-libs-cxxsupp
yutil
- cpp-malloc-system
library-cpp-cpuid_check
cpp-getopt-small
tools-enum_parser-parse_enum
@@ -24,4 +23,7 @@ target_link_options(enum_parser PRIVATE
target_sources(enum_parser PRIVATE
${CMAKE_SOURCE_DIR}/tools/enum_parser/enum_parser/main.cpp
)
+target_allocator(enum_parser
+ system_allocator
+)
vcs_info(enum_parser)
diff --git a/tools/enum_parser/enum_parser/CMakeLists.linux-aarch64.txt b/tools/enum_parser/enum_parser/CMakeLists.linux-aarch64.txt
index 45838aa0f13..04196e5f087 100644
--- a/tools/enum_parser/enum_parser/CMakeLists.linux-aarch64.txt
+++ b/tools/enum_parser/enum_parser/CMakeLists.linux-aarch64.txt
@@ -12,7 +12,6 @@ target_link_libraries(enum_parser PUBLIC
contrib-libs-linux-headers
contrib-libs-cxxsupp
yutil
- cpp-malloc-jemalloc
cpp-getopt-small
tools-enum_parser-parse_enum
)
@@ -29,4 +28,7 @@ target_link_options(enum_parser PRIVATE
target_sources(enum_parser PRIVATE
${CMAKE_SOURCE_DIR}/tools/enum_parser/enum_parser/main.cpp
)
+target_allocator(enum_parser
+ cpp-malloc-jemalloc
+)
vcs_info(enum_parser)
diff --git a/tools/enum_parser/enum_parser/CMakeLists.linux-x86_64.txt b/tools/enum_parser/enum_parser/CMakeLists.linux-x86_64.txt
index 56e5139b675..18ccff5c552 100644
--- a/tools/enum_parser/enum_parser/CMakeLists.linux-x86_64.txt
+++ b/tools/enum_parser/enum_parser/CMakeLists.linux-x86_64.txt
@@ -12,8 +12,6 @@ target_link_libraries(enum_parser PUBLIC
contrib-libs-linux-headers
contrib-libs-cxxsupp
yutil
- cpp-malloc-tcmalloc
- libs-tcmalloc-no_percpu_cache
library-cpp-cpuid_check
cpp-getopt-small
tools-enum_parser-parse_enum
@@ -31,4 +29,8 @@ target_link_options(enum_parser PRIVATE
target_sources(enum_parser PRIVATE
${CMAKE_SOURCE_DIR}/tools/enum_parser/enum_parser/main.cpp
)
+target_allocator(enum_parser
+ cpp-malloc-tcmalloc
+ libs-tcmalloc-no_percpu_cache
+)
vcs_info(enum_parser)
diff --git a/tools/enum_parser/enum_parser/CMakeLists.windows-x86_64.txt b/tools/enum_parser/enum_parser/CMakeLists.windows-x86_64.txt
index 4d598edeb45..2684df8d52c 100644
--- a/tools/enum_parser/enum_parser/CMakeLists.windows-x86_64.txt
+++ b/tools/enum_parser/enum_parser/CMakeLists.windows-x86_64.txt
@@ -11,7 +11,6 @@ add_executable(enum_parser)
target_link_libraries(enum_parser PUBLIC
contrib-libs-cxxsupp
yutil
- cpp-malloc-system
library-cpp-cpuid_check
cpp-getopt-small
tools-enum_parser-parse_enum
@@ -19,4 +18,7 @@ target_link_libraries(enum_parser PUBLIC
target_sources(enum_parser PRIVATE
${CMAKE_SOURCE_DIR}/tools/enum_parser/enum_parser/main.cpp
)
+target_allocator(enum_parser
+ system_allocator
+)
vcs_info(enum_parser)