wscript: add some more warnings as errors

This commit is contained in:
Alibek Omarov 2021-07-02 19:27:45 +03:00
parent 4723eb2586
commit 9287a0f5c5
1 changed files with 6 additions and 0 deletions

View File

@ -190,6 +190,9 @@ def configure(conf):
# so just warn, not error
'-Winit-self',
'-Werror=implicit-fallthrough=2', # clang incompatible without "=2"
'-Werror=logical-op',
'-Werror=write-strings',
# '-Werror=format=2',
# '-Wdouble-promotion', # disable warning flood
'-Wstrict-aliasing',
]
@ -204,6 +207,9 @@ def configure(conf):
'-Werror=old-style-definition',
'-Werror=declaration-after-statement',
'-Werror=enum-conversion',
'-Werror=jump-misses-init',
'-Werror=strict-prototypes',
# '-Werror=nested-externs',
'-fnonconst-initializers' # owcc
]