aboutsummaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorarcadia-devtools <arcadia-devtools@yandex-team.ru>2022-03-25 12:19:50 +0300
committerarcadia-devtools <arcadia-devtools@yandex-team.ru>2022-03-25 12:19:50 +0300
commit73d3613a82e5c217fcbe0ab8bbf8120c1ed1af55 (patch)
tree45e223eef3f13c502ec2692aa1ae616b8526b133 /build
parent6d68f7eae47385bd2a512252e401399b0b3ad8fa (diff)
downloadydb-73d3613a82e5c217fcbe0ab8bbf8120c1ed1af55.tar.gz
intermediate changes
ref:26f0026b7d502264a4d9af572c1b97405791f0f9
Diffstat (limited to 'build')
-rw-r--r--build/rules/autocheck.blacklist1
-rwxr-xr-xbuild/ymake_conf.py22
2 files changed, 12 insertions, 11 deletions
diff --git a/build/rules/autocheck.blacklist b/build/rules/autocheck.blacklist
index d50ce1cc52..21f7237942 100644
--- a/build/rules/autocheck.blacklist
+++ b/build/rules/autocheck.blacklist
@@ -15,6 +15,7 @@ games/frontend
junk
kinopoisk/frontend
kinopoisk/analytics
+lpc
maps/front
mobile
music/frontend
diff --git a/build/ymake_conf.py b/build/ymake_conf.py
index 21262379a1..e07e9db7b8 100755
--- a/build/ymake_conf.py
+++ b/build/ymake_conf.py
@@ -1423,24 +1423,24 @@ class GnuCompiler(Compiler):
if self.tc.is_clang:
self.sfdl_flags.append('-Qunused-arguments')
+ self.c_warnings += [
+ '-Wno-implicit-const-int-float-conversion',
+ # For nvcc to accept the above.
+ '-Wno-unknown-warning-option',
+ ]
+
self.cxx_warnings += [
'-Wimport-preprocessor-directive-pedantic',
- '-Wno-undefined-var-template',
- '-Wno-return-std-move',
+ '-Wno-ambiguous-reversed-operator',
'-Wno-defaulted-function-deleted',
- '-Wno-pessimizing-move',
- '-Wno-range-loop-construct',
'-Wno-deprecated-anon-enum-enum-conversion',
'-Wno-deprecated-enum-enum-conversion',
'-Wno-deprecated-enum-float-conversion',
- '-Wno-ambiguous-reversed-operator',
'-Wno-deprecated-volatile',
- ]
-
- self.c_warnings += [
- '-Wno-implicit-const-int-float-conversion',
- # For nvcc to accept the above.
- '-Wno-unknown-warning-option',
+ '-Wno-pessimizing-move',
+ '-Wno-range-loop-construct',
+ '-Wno-return-std-move',
+ '-Wno-undefined-var-template',
]
elif self.tc.is_gcc: