diff options
author | arcadia-devtools <arcadia-devtools@yandex-team.ru> | 2022-03-25 12:19:50 +0300 |
---|---|---|
committer | arcadia-devtools <arcadia-devtools@yandex-team.ru> | 2022-03-25 12:19:50 +0300 |
commit | 73d3613a82e5c217fcbe0ab8bbf8120c1ed1af55 (patch) | |
tree | 45e223eef3f13c502ec2692aa1ae616b8526b133 | |
parent | 6d68f7eae47385bd2a512252e401399b0b3ad8fa (diff) | |
download | ydb-73d3613a82e5c217fcbe0ab8bbf8120c1ed1af55.tar.gz |
intermediate changes
ref:26f0026b7d502264a4d9af572c1b97405791f0f9
-rw-r--r-- | build/rules/autocheck.blacklist | 1 | ||||
-rwxr-xr-x | build/ymake_conf.py | 22 |
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: |