Update WAF to 1.5.3 rv5749, fixing --destdir with relative paths
This commit is contained in:
parent
5aaff908cb
commit
4314623138
2 changed files with 2 additions and 2 deletions
BIN
waf
vendored
BIN
waf
vendored
Binary file not shown.
4
wscript
4
wscript
|
@ -194,7 +194,7 @@ def configure (conf):
|
||||||
if debug_level != 'none':
|
if debug_level != 'none':
|
||||||
if compiler == 'gcc':
|
if compiler == 'gcc':
|
||||||
if debug_level == 'debug':
|
if debug_level == 'debug':
|
||||||
conf.env.append_value ('CCFLAGS', '-Wall -O0 -g')
|
conf.env.append_value ('CCFLAGS', '-Wall -O0 -g'.split ())
|
||||||
elif debug_level == 'full':
|
elif debug_level == 'full':
|
||||||
# -Wdeclaration-after-statement
|
# -Wdeclaration-after-statement
|
||||||
# -Wmissing-declarations -Wmissing-prototypes
|
# -Wmissing-declarations -Wmissing-prototypes
|
||||||
|
@ -209,7 +209,7 @@ def configure (conf):
|
||||||
'-Winline -Wformat-security '
|
'-Winline -Wformat-security '
|
||||||
'-Winit-self -Wmissing-include-dirs -Wundef '
|
'-Winit-self -Wmissing-include-dirs -Wundef '
|
||||||
'-Wmissing-format-attribute -Wnested-externs '
|
'-Wmissing-format-attribute -Wnested-externs '
|
||||||
'-DG_ENABLE_DEBUG')
|
'-DG_ENABLE_DEBUG'.split ())
|
||||||
else:
|
else:
|
||||||
conf.env.append_value ('CCFLAGS', '-O2')
|
conf.env.append_value ('CCFLAGS', '-O2')
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in a new issue