Browse Source

wscript: make stringop-overflow non-fatal

pull/2/head
Alibek Omarov 1 year ago
parent
commit
e1cbf96100
  1. 5
      wscript

5
wscript

@ -310,16 +310,13 @@ def configure(conf): @@ -310,16 +310,13 @@ def configure(conf):
# unstable diagnostics, may cause false positives
'-Winit-self',
'-Wmisleading-indentation',
'-Wstringop-overflow',
'-Wunintialized',
# disabled, flood
# '-Wdouble-promotion',
]
# buggy compiler on NSW
if conf.env.DEST_OS != 'nswitch':
opt_flags += [ '-Werror=stringop-overflow' ]
opt_cflags = [
'-Werror=declaration-after-statement',
'-Werror=enum-conversion',

Loading…
Cancel
Save