diff options
author | Steve Chaplin <> | 2012-12-22 12:15:28 +0800 |
---|---|---|
committer | Steve Chaplin <> | 2012-12-22 12:15:28 +0800 |
commit | c57cd129407c904f8c2f752a59d0183df7b01a5e (patch) | |
tree | 3e59e4d32a1fee8d2bb2095c7a6b8f2a1aeaafa1 | |
parent | 75e82a1b3f495a3abbc78e50a5c66356d320fb15 (diff) |
Update waf to 1.7.8
-rwxr-xr-x | waf | bin | 87674 -> 90242 bytes | |||
-rw-r--r-- | wscript | 18 |
2 files changed, 12 insertions, 6 deletions
Binary files differ @@ -14,18 +14,24 @@ xpyb_version_required = '1.3' # optional def options(ctx): print(' %s/options()' %d) - ctx.tool_options('gnu_dirs') - ctx.tool_options('compiler_cc') - ctx.tool_options('python') # options for disabling pyc or pyo compilation +# ctx.tool_options('gnu_dirs') +# ctx.tool_options('compiler_cc') +# ctx.tool_options('python') # options for disabling pyc or pyo compilation + ctx.load('gnu_dirs') + ctx.load('compiler_cc') + ctx.load('python') # options for disabling pyc or pyo compilation def configure(ctx): print(' %s/configure()' %d) env = ctx.env - ctx.check_tool('gnu_dirs') - ctx.check_tool('compiler_cc') - ctx.check_tool('python') +# ctx.check_tool('gnu_dirs') +# ctx.check_tool('compiler_cc') +# ctx.check_tool('python') + ctx.load('gnu_dirs') + ctx.load('compiler_cc') + ctx.load('python') ctx.check_python_version((3,1,0)) ctx.check_python_headers() |