waf-1.9.11

This commit is contained in:
Thomas Nagy 2017-05-06 16:55:03 +02:00
parent a65c7c03b7
commit cbf4c4f861
No known key found for this signature in database
GPG Key ID: 49B4C67C05277AAA
4 changed files with 13 additions and 5 deletions

View File

@ -1,3 +1,11 @@
NEW IN WAF 1.9.11
-----------------
* Detect Visual Studio 2017 Build Tools using vswhere.exe #1945
* Improve preprocessor performance on system paths in verbose mode #1950
* Better installation defaults for windows import libraries #1860
* cpplint enhancements: --cpplint-root #1953 #1956
* eclipse project generator enhancements #1957 #1958
NEW IN WAF 1.9.10
-----------------
* Detect -pie and -rdynamic in parse_flags #1936

View File

@ -32,7 +32,7 @@ POSSIBILITY OF SUCH DAMAGE.
import os, sys, inspect
VERSION="1.9.10"
VERSION="1.9.11"
REVISION="x"
GIT="x"
INSTALL="x"

View File

@ -11,13 +11,13 @@ from waflib import Utils, Errors, Logs
import waflib.Node
# the following 3 constants are updated on each new release (do not touch)
HEXVERSION=0x1090a00
HEXVERSION=0x1090b00
"""Constant updated on new releases"""
WAFVERSION="1.9.10"
WAFVERSION="1.9.11"
"""Constant updated on new releases"""
WAFREVISION="c83e485d1682d6af8a632234d9cbbc18be7b490b"
WAFREVISION="a65c7c03b7012cc6c3fb0f9c9a3be8abc06bc511"
"""Git revision when the waf version is updated"""
ABI = 99

View File

@ -9,7 +9,7 @@ To add a tool that does not exist in the folder compat15, pass an absolute path:
./waf-light --tools=compat15,/comp/waf/aba.py --prelude=$'\tfrom waflib.extras import aba\n\taba.foo()'
"""
VERSION="1.9.10"
VERSION="1.9.11"
APPNAME='waf'
REVISION=''