diff options
author | arcadia-devtools <arcadia-devtools@yandex-team.ru> | 2022-02-18 21:42:41 +0300 |
---|---|---|
committer | arcadia-devtools <arcadia-devtools@yandex-team.ru> | 2022-02-18 21:42:41 +0300 |
commit | 5291e2f6c447d149f3dc17006419bc7411478148 (patch) | |
tree | 2925d1a7aa1a894f7514fb2181414837e3990799 /library | |
parent | 68155b41eaf4cc306f8286e7ce8da6f6af7d93f5 (diff) | |
download | ydb-5291e2f6c447d149f3dc17006419bc7411478148.tar.gz |
intermediate changes
ref:4ec759a52592995211dfd2877771c14eb231e31b
Diffstat (limited to 'library')
-rw-r--r-- | library/cpp/digest/old_crc/gencrc/CMakeLists.txt | 8 | ||||
-rw-r--r-- | library/cpp/string_utils/quote/quote.cpp | 2 |
2 files changed, 8 insertions, 2 deletions
diff --git a/library/cpp/digest/old_crc/gencrc/CMakeLists.txt b/library/cpp/digest/old_crc/gencrc/CMakeLists.txt index 24f2dc82de..6b272b1df3 100644 --- a/library/cpp/digest/old_crc/gencrc/CMakeLists.txt +++ b/library/cpp/digest/old_crc/gencrc/CMakeLists.txt @@ -9,6 +9,14 @@ target_sources(gencrc PRIVATE ) target_link_flags(gencrc PUBLIC + -ldl + -lrt + -Wl,--no-as-needed + -fPIC + -Wl,--gdb-index + -fPIC + -fuse-ld=$(LLD_ROOT-sbr:2283360772)/ld + -Wl,--no-rosegment -lpthread -lrt -ldl diff --git a/library/cpp/string_utils/quote/quote.cpp b/library/cpp/string_utils/quote/quote.cpp index bac72d07fc..a7a4749d99 100644 --- a/library/cpp/string_utils/quote/quote.cpp +++ b/library/cpp/string_utils/quote/quote.cpp @@ -4,8 +4,6 @@ #include <util/string/ascii.h> #include <util/string/cstriter.h> -#include <cctype> - /* note: (x & 0xdf) makes x upper case */ #define GETXC \ do { \ |