diff options
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct index 55b061a6f7..b3875d6801 100644 --- a/SConstruct +++ b/SConstruct @@ -347,7 +347,12 @@ if selected_platform in platform_list: if version != None and version[0] >= '7': shadow_local_warning = ['-Wshadow-local'] if (env["warnings"] == 'extra'): - env.Append(CCFLAGS=['-Wall', '-Wextra'] + all_plus_warnings + shadow_local_warning) + # FIXME: enable -Wimplicit-fallthrough once #26135 is fixed + # FIXME: enable -Wclobbered once #26351 is fixed + env.Append(CCFLAGS=['-Wall', '-Wextra', '-Wno-implicit-fallthrough', '-Wno-unused-parameter'] + all_plus_warnings + shadow_local_warning) + if methods.use_gcc(env): + env['CCFLAGS'] += ['-Wno-clobbered'] + elif (env["warnings"] == 'all'): env.Append(CCFLAGS=['-Wall'] + shadow_local_warning) elif (env["warnings"] == 'moderate'): |