diff options
author | svidyuk <svidyuk@yandex-team.ru> | 2022-07-01 09:02:32 +0300 |
---|---|---|
committer | svidyuk <svidyuk@yandex-team.ru> | 2022-07-01 09:02:32 +0300 |
commit | 3c9bba8e28fdf3bca1abbce2a72e27c542c2fac4 (patch) | |
tree | 813632dc1e042d4799bb1a5838d02c781c977218 /contrib/libs/tcmalloc | |
parent | 77cb1379853232a9e0f5540d74d564dc76c9c208 (diff) | |
download | ydb-3c9bba8e28fdf3bca1abbce2a72e27c542c2fac4.tar.gz |
Hackish NO_COMPILER_WARNINGS support
Proper implementation must be done as part of YMAKE-91
YMAKE-91
ref:8b77363477972e5927f43d53d571cd60dd458995
Diffstat (limited to 'contrib/libs/tcmalloc')
-rw-r--r-- | contrib/libs/tcmalloc/CMakeLists.linux.txt | 2 | ||||
-rw-r--r-- | contrib/libs/tcmalloc/malloc_extension/CMakeLists.linux.txt | 1 | ||||
-rw-r--r-- | contrib/libs/tcmalloc/no_percpu_cache/CMakeLists.linux.txt | 2 |
3 files changed, 5 insertions, 0 deletions
diff --git a/contrib/libs/tcmalloc/CMakeLists.linux.txt b/contrib/libs/tcmalloc/CMakeLists.linux.txt index 71b205ddc3..8f96b977ae 100644 --- a/contrib/libs/tcmalloc/CMakeLists.linux.txt +++ b/contrib/libs/tcmalloc/CMakeLists.linux.txt @@ -10,6 +10,7 @@ add_library(contrib-libs-tcmalloc) target_compile_options(contrib-libs-tcmalloc PRIVATE -DTCMALLOC_256K_PAGES + -Wno-everything ) target_link_libraries(contrib-libs-tcmalloc PUBLIC contrib-libs-cxxsupp @@ -23,6 +24,7 @@ target_sources(contrib-libs-tcmalloc PRIVATE add_global_library_for(contrib-libs-tcmalloc.global contrib-libs-tcmalloc) target_compile_options(contrib-libs-tcmalloc.global PRIVATE -DTCMALLOC_256K_PAGES + -Wno-everything ) target_link_libraries(contrib-libs-tcmalloc.global PUBLIC contrib-libs-cxxsupp diff --git a/contrib/libs/tcmalloc/malloc_extension/CMakeLists.linux.txt b/contrib/libs/tcmalloc/malloc_extension/CMakeLists.linux.txt index 383a11c0de..724bc179db 100644 --- a/contrib/libs/tcmalloc/malloc_extension/CMakeLists.linux.txt +++ b/contrib/libs/tcmalloc/malloc_extension/CMakeLists.linux.txt @@ -10,6 +10,7 @@ add_library(libs-tcmalloc-malloc_extension) target_compile_options(libs-tcmalloc-malloc_extension PRIVATE -DTCMALLOC_256K_PAGES + -Wno-everything ) target_include_directories(libs-tcmalloc-malloc_extension PUBLIC ${CMAKE_SOURCE_DIR}/contrib/libs/tcmalloc diff --git a/contrib/libs/tcmalloc/no_percpu_cache/CMakeLists.linux.txt b/contrib/libs/tcmalloc/no_percpu_cache/CMakeLists.linux.txt index 2144bdb09a..ab328ca875 100644 --- a/contrib/libs/tcmalloc/no_percpu_cache/CMakeLists.linux.txt +++ b/contrib/libs/tcmalloc/no_percpu_cache/CMakeLists.linux.txt @@ -11,6 +11,7 @@ add_library(libs-tcmalloc-no_percpu_cache) target_compile_options(libs-tcmalloc-no_percpu_cache PRIVATE -DTCMALLOC_256K_PAGES -DTCMALLOC_DEPRECATED_PERTHREAD + -Wno-everything ) target_link_libraries(libs-tcmalloc-no_percpu_cache PUBLIC contrib-libs-cxxsupp @@ -25,6 +26,7 @@ add_global_library_for(libs-tcmalloc-no_percpu_cache.global libs-tcmalloc-no_per target_compile_options(libs-tcmalloc-no_percpu_cache.global PRIVATE -DTCMALLOC_256K_PAGES -DTCMALLOC_DEPRECATED_PERTHREAD + -Wno-everything ) target_link_libraries(libs-tcmalloc-no_percpu_cache.global PUBLIC contrib-libs-cxxsupp |