Browse Source

wscript: add some more warnings as errors

pull/2/head
Alibek Omarov 3 years ago
parent
commit
9287a0f5c5
  1. 6
      wscript

6
wscript

@ -190,6 +190,9 @@ def configure(conf): @@ -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): @@ -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
]

Loading…
Cancel
Save