wscript: disable treating uninitialized as error because it gives too much false-positives

This commit is contained in:
Alibek Omarov 2020-05-13 00:24:50 +03:00
parent 0db1a7743d
commit 64a96b26ad
1 changed files with 2 additions and 1 deletions

View File

@ -271,7 +271,8 @@ def configure(conf):
'-Werror=duplicated-branches', # BEWARE: buggy
'-Werror=bool-compare',
'-Werror=bool-operation',
'-Werror=uninitialized',
'-Wuninitialized', # older GCC versions have -Wmaybe-uninitialized enabled by this switch, which is not accurate
# so just warn, not error
'-Winit-self',
'-Werror=implicit-fallthrough=2', # clang incompatible without "=2"
# '-Wdouble-promotion', # disable warning flood