diff options
author | Dmitry Nechitaev <nechda6@gmail.com> | 2024-12-23 20:14:28 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-23 20:14:28 +0300 |
commit | 4f48bf5f770db686f276aed75f87022fcc0f095d (patch) | |
tree | ddd0394a71256d0f379a07b59232a8f8c862260b | |
parent | c69bdac5a2cd7d098458a8f1cf9df080f10ba9bc (diff) | |
download | ydb-4f48bf5f770db686f276aed75f87022fcc0f095d.tar.gz |
Disable warning related to unknown-argument (#12878)
Co-authored-by: Dmitry Nechitaev <nechda@yandex-team.ru>
-rw-r--r-- | build/internal/ya.conf | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build/internal/ya.conf b/build/internal/ya.conf index 354b0820bd..97a4300e27 100644 --- a/build/internal/ya.conf +++ b/build/internal/ya.conf @@ -13,7 +13,7 @@ USE_AIO = "static" USE_ICONV = "static" USE_IDN = "static" APPLE_SDK_LOCAL = "yes" -CFLAGS = "-fno-omit-frame-pointer" +CFLAGS = "-fno-omit-frame-pointer -Wno-unknown-argument" USE_CLANG_CL = "yes" [flags] @@ -23,5 +23,5 @@ USE_AIO = "static" USE_ICONV = "static" USE_IDN = "static" APPLE_SDK_LOCAL = "yes" -CFLAGS = "-fno-omit-frame-pointer" +CFLAGS = "-fno-omit-frame-pointer -Wno-unknown-argument" USE_CLANG_CL = "yes" |