aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp
diff options
context:
space:
mode:
authordcherednik <dcherednik@ydb.tech>2023-08-08 21:17:44 +0300
committerdcherednik <dcherednik@ydb.tech>2023-08-08 21:45:29 +0300
commit445cbed2c832da8dfb3c0d045f54de51a4936961 (patch)
treef28fdf3d487e2959d81a4f4a883a99e23c43c177 /library/cpp
parent2ff2d021c0611b473f5f61b23e8e3565c6b5e915 (diff)
downloadydb-445cbed2c832da8dfb3c0d045f54de51a4936961.tar.gz
Make OSS build happy
Diffstat (limited to 'library/cpp')
-rw-r--r--library/cpp/actors/cppcoro/CMakeLists.darwin-x86_64.txt2
-rw-r--r--library/cpp/actors/cppcoro/CMakeLists.linux-aarch64.txt2
-rw-r--r--library/cpp/actors/cppcoro/CMakeLists.linux-x86_64.txt2
-rw-r--r--library/cpp/actors/cppcoro/CMakeLists.windows-x86_64.txt2
-rw-r--r--library/cpp/actors/cppcoro/corobenchmark/CMakeLists.darwin-x86_64.txt (renamed from library/cpp/actors/cppcoro/benchmark/CMakeLists.darwin-x86_64.txt)14
-rw-r--r--library/cpp/actors/cppcoro/corobenchmark/CMakeLists.linux-aarch64.txt (renamed from library/cpp/actors/cppcoro/benchmark/CMakeLists.linux-aarch64.txt)14
-rw-r--r--library/cpp/actors/cppcoro/corobenchmark/CMakeLists.linux-x86_64.txt (renamed from library/cpp/actors/cppcoro/benchmark/CMakeLists.linux-x86_64.txt)14
-rw-r--r--library/cpp/actors/cppcoro/corobenchmark/CMakeLists.txt (renamed from library/cpp/actors/cppcoro/benchmark/CMakeLists.txt)0
-rw-r--r--library/cpp/actors/cppcoro/corobenchmark/CMakeLists.windows-x86_64.txt (renamed from library/cpp/actors/cppcoro/benchmark/CMakeLists.windows-x86_64.txt)12
-rw-r--r--library/cpp/actors/cppcoro/corobenchmark/main.cpp (renamed from library/cpp/actors/cppcoro/benchmark/main.cpp)0
-rw-r--r--library/cpp/actors/cppcoro/corobenchmark/ya.make (renamed from library/cpp/actors/cppcoro/benchmark/ya.make)0
-rw-r--r--library/cpp/actors/cppcoro/ya.make2
12 files changed, 32 insertions, 32 deletions
diff --git a/library/cpp/actors/cppcoro/CMakeLists.darwin-x86_64.txt b/library/cpp/actors/cppcoro/CMakeLists.darwin-x86_64.txt
index f27bdd46d9..9795130141 100644
--- a/library/cpp/actors/cppcoro/CMakeLists.darwin-x86_64.txt
+++ b/library/cpp/actors/cppcoro/CMakeLists.darwin-x86_64.txt
@@ -6,7 +6,7 @@
# original buildsystem will not be accepted.
-add_subdirectory(benchmark)
+add_subdirectory(corobenchmark)
add_subdirectory(ut)
add_library(cpp-actors-cppcoro)
diff --git a/library/cpp/actors/cppcoro/CMakeLists.linux-aarch64.txt b/library/cpp/actors/cppcoro/CMakeLists.linux-aarch64.txt
index a7c6669d6f..514824dad2 100644
--- a/library/cpp/actors/cppcoro/CMakeLists.linux-aarch64.txt
+++ b/library/cpp/actors/cppcoro/CMakeLists.linux-aarch64.txt
@@ -6,7 +6,7 @@
# original buildsystem will not be accepted.
-add_subdirectory(benchmark)
+add_subdirectory(corobenchmark)
add_subdirectory(ut)
add_library(cpp-actors-cppcoro)
diff --git a/library/cpp/actors/cppcoro/CMakeLists.linux-x86_64.txt b/library/cpp/actors/cppcoro/CMakeLists.linux-x86_64.txt
index a7c6669d6f..514824dad2 100644
--- a/library/cpp/actors/cppcoro/CMakeLists.linux-x86_64.txt
+++ b/library/cpp/actors/cppcoro/CMakeLists.linux-x86_64.txt
@@ -6,7 +6,7 @@
# original buildsystem will not be accepted.
-add_subdirectory(benchmark)
+add_subdirectory(corobenchmark)
add_subdirectory(ut)
add_library(cpp-actors-cppcoro)
diff --git a/library/cpp/actors/cppcoro/CMakeLists.windows-x86_64.txt b/library/cpp/actors/cppcoro/CMakeLists.windows-x86_64.txt
index f27bdd46d9..9795130141 100644
--- a/library/cpp/actors/cppcoro/CMakeLists.windows-x86_64.txt
+++ b/library/cpp/actors/cppcoro/CMakeLists.windows-x86_64.txt
@@ -6,7 +6,7 @@
# original buildsystem will not be accepted.
-add_subdirectory(benchmark)
+add_subdirectory(corobenchmark)
add_subdirectory(ut)
add_library(cpp-actors-cppcoro)
diff --git a/library/cpp/actors/cppcoro/benchmark/CMakeLists.darwin-x86_64.txt b/library/cpp/actors/cppcoro/corobenchmark/CMakeLists.darwin-x86_64.txt
index 41a756eff5..1b98f8aac0 100644
--- a/library/cpp/actors/cppcoro/benchmark/CMakeLists.darwin-x86_64.txt
+++ b/library/cpp/actors/cppcoro/corobenchmark/CMakeLists.darwin-x86_64.txt
@@ -7,25 +7,25 @@
-add_executable(benchmark)
-target_link_libraries(benchmark PUBLIC
+add_executable(corobenchmark)
+target_link_libraries(corobenchmark PUBLIC
contrib-libs-cxxsupp
yutil
library-cpp-cpuid_check
testing-benchmark-main
cpp-actors-cppcoro
)
-target_link_options(benchmark PRIVATE
+target_link_options(corobenchmark PRIVATE
-Wl,-platform_version,macos,11.0,11.0
-fPIC
-fPIC
-framework
CoreFoundation
)
-target_sources(benchmark PRIVATE
- ${CMAKE_SOURCE_DIR}/library/cpp/actors/cppcoro/benchmark/main.cpp
+target_sources(corobenchmark PRIVATE
+ ${CMAKE_SOURCE_DIR}/library/cpp/actors/cppcoro/corobenchmark/main.cpp
)
-target_allocator(benchmark
+target_allocator(corobenchmark
system_allocator
)
-vcs_info(benchmark)
+vcs_info(corobenchmark)
diff --git a/library/cpp/actors/cppcoro/benchmark/CMakeLists.linux-aarch64.txt b/library/cpp/actors/cppcoro/corobenchmark/CMakeLists.linux-aarch64.txt
index 1a5559813a..f12dfdad8d 100644
--- a/library/cpp/actors/cppcoro/benchmark/CMakeLists.linux-aarch64.txt
+++ b/library/cpp/actors/cppcoro/corobenchmark/CMakeLists.linux-aarch64.txt
@@ -7,15 +7,15 @@
-add_executable(benchmark)
-target_link_libraries(benchmark PUBLIC
+add_executable(corobenchmark)
+target_link_libraries(corobenchmark PUBLIC
contrib-libs-linux-headers
contrib-libs-cxxsupp
yutil
testing-benchmark-main
cpp-actors-cppcoro
)
-target_link_options(benchmark PRIVATE
+target_link_options(corobenchmark PRIVATE
-ldl
-lrt
-Wl,--no-as-needed
@@ -25,10 +25,10 @@ target_link_options(benchmark PRIVATE
-lrt
-ldl
)
-target_sources(benchmark PRIVATE
- ${CMAKE_SOURCE_DIR}/library/cpp/actors/cppcoro/benchmark/main.cpp
+target_sources(corobenchmark PRIVATE
+ ${CMAKE_SOURCE_DIR}/library/cpp/actors/cppcoro/corobenchmark/main.cpp
)
-target_allocator(benchmark
+target_allocator(corobenchmark
cpp-malloc-jemalloc
)
-vcs_info(benchmark)
+vcs_info(corobenchmark)
diff --git a/library/cpp/actors/cppcoro/benchmark/CMakeLists.linux-x86_64.txt b/library/cpp/actors/cppcoro/corobenchmark/CMakeLists.linux-x86_64.txt
index 68e2fd4d6e..e5b37926d1 100644
--- a/library/cpp/actors/cppcoro/benchmark/CMakeLists.linux-x86_64.txt
+++ b/library/cpp/actors/cppcoro/corobenchmark/CMakeLists.linux-x86_64.txt
@@ -7,8 +7,8 @@
-add_executable(benchmark)
-target_link_libraries(benchmark PUBLIC
+add_executable(corobenchmark)
+target_link_libraries(corobenchmark PUBLIC
contrib-libs-linux-headers
contrib-libs-cxxsupp
yutil
@@ -16,7 +16,7 @@ target_link_libraries(benchmark PUBLIC
testing-benchmark-main
cpp-actors-cppcoro
)
-target_link_options(benchmark PRIVATE
+target_link_options(corobenchmark PRIVATE
-ldl
-lrt
-Wl,--no-as-needed
@@ -26,11 +26,11 @@ target_link_options(benchmark PRIVATE
-lrt
-ldl
)
-target_sources(benchmark PRIVATE
- ${CMAKE_SOURCE_DIR}/library/cpp/actors/cppcoro/benchmark/main.cpp
+target_sources(corobenchmark PRIVATE
+ ${CMAKE_SOURCE_DIR}/library/cpp/actors/cppcoro/corobenchmark/main.cpp
)
-target_allocator(benchmark
+target_allocator(corobenchmark
cpp-malloc-tcmalloc
libs-tcmalloc-no_percpu_cache
)
-vcs_info(benchmark)
+vcs_info(corobenchmark)
diff --git a/library/cpp/actors/cppcoro/benchmark/CMakeLists.txt b/library/cpp/actors/cppcoro/corobenchmark/CMakeLists.txt
index f8b31df0c1..f8b31df0c1 100644
--- a/library/cpp/actors/cppcoro/benchmark/CMakeLists.txt
+++ b/library/cpp/actors/cppcoro/corobenchmark/CMakeLists.txt
diff --git a/library/cpp/actors/cppcoro/benchmark/CMakeLists.windows-x86_64.txt b/library/cpp/actors/cppcoro/corobenchmark/CMakeLists.windows-x86_64.txt
index 731a59b67b..c9a8359b4b 100644
--- a/library/cpp/actors/cppcoro/benchmark/CMakeLists.windows-x86_64.txt
+++ b/library/cpp/actors/cppcoro/corobenchmark/CMakeLists.windows-x86_64.txt
@@ -7,18 +7,18 @@
-add_executable(benchmark)
-target_link_libraries(benchmark PUBLIC
+add_executable(corobenchmark)
+target_link_libraries(corobenchmark PUBLIC
contrib-libs-cxxsupp
yutil
library-cpp-cpuid_check
testing-benchmark-main
cpp-actors-cppcoro
)
-target_sources(benchmark PRIVATE
- ${CMAKE_SOURCE_DIR}/library/cpp/actors/cppcoro/benchmark/main.cpp
+target_sources(corobenchmark PRIVATE
+ ${CMAKE_SOURCE_DIR}/library/cpp/actors/cppcoro/corobenchmark/main.cpp
)
-target_allocator(benchmark
+target_allocator(corobenchmark
system_allocator
)
-vcs_info(benchmark)
+vcs_info(corobenchmark)
diff --git a/library/cpp/actors/cppcoro/benchmark/main.cpp b/library/cpp/actors/cppcoro/corobenchmark/main.cpp
index 20b4d63243..20b4d63243 100644
--- a/library/cpp/actors/cppcoro/benchmark/main.cpp
+++ b/library/cpp/actors/cppcoro/corobenchmark/main.cpp
diff --git a/library/cpp/actors/cppcoro/benchmark/ya.make b/library/cpp/actors/cppcoro/corobenchmark/ya.make
index ef5ad4135c..ef5ad4135c 100644
--- a/library/cpp/actors/cppcoro/benchmark/ya.make
+++ b/library/cpp/actors/cppcoro/corobenchmark/ya.make
diff --git a/library/cpp/actors/cppcoro/ya.make b/library/cpp/actors/cppcoro/ya.make
index c1d8c225aa..4df4f05302 100644
--- a/library/cpp/actors/cppcoro/ya.make
+++ b/library/cpp/actors/cppcoro/ya.make
@@ -20,6 +20,6 @@ SRCS(
END()
RECURSE_FOR_TESTS(
- benchmark
+ corobenchmark
ut
)