Add -Wwrite-strings into all and extra warnings.
This commit is contained in:
parent
4f697f73a5
commit
40cd35489d
@ -337,17 +337,18 @@ if selected_platform in platform_list:
|
|||||||
else: # Rest of the world
|
else: # Rest of the world
|
||||||
disable_nonessential_warnings = ['-Wno-sign-compare']
|
disable_nonessential_warnings = ['-Wno-sign-compare']
|
||||||
shadow_local_warning = []
|
shadow_local_warning = []
|
||||||
|
all_plus_warnings = ['-Wwrite-strings']
|
||||||
|
|
||||||
if 'gcc' in os.path.basename(env["CC"]):
|
if 'gcc' in os.path.basename(env["CC"]):
|
||||||
version = methods.get_compiler_version(env)
|
version = methods.get_compiler_version(env)
|
||||||
if version != None and version[0] >= '7':
|
if version != None and version[0] >= '7':
|
||||||
shadow_local_warning = ['-Wshadow-local']
|
shadow_local_warning = ['-Wshadow-local']
|
||||||
if (env["warnings"] == 'extra'):
|
if (env["warnings"] == 'extra'):
|
||||||
env.Append(CCFLAGS=['-Wall', '-Wextra'] + shadow_local_warning)
|
env.Append(CCFLAGS=['-Wall', '-Wextra'] + all_plus_warnings + shadow_local_warning)
|
||||||
elif (env["warnings"] == 'all'):
|
elif (env["warnings"] == 'all'):
|
||||||
env.Append(CCFLAGS=['-Wall'] + shadow_local_warning + disable_nonessential_warnings)
|
env.Append(CCFLAGS=['-Wall'] + all_plus_warnings + shadow_local_warning + disable_nonessential_warnings)
|
||||||
elif (env["warnings"] == 'moderate'):
|
elif (env["warnings"] == 'moderate'):
|
||||||
env.Append(CCFLAGS=['-Wall', '-Wno-unused'] + shadow_local_warning + disable_nonessential_warnings)
|
env.Append(CCFLAGS=['-Wall', '-Wno-unused'] + shadow_local_warning + disable_nonessential_warnings)
|
||||||
else: # 'no'
|
else: # 'no'
|
||||||
env.Append(CCFLAGS=['-w'])
|
env.Append(CCFLAGS=['-w'])
|
||||||
if (env["werror"]):
|
if (env["werror"]):
|
||||||
|
Loading…
Reference in New Issue
Block a user