waf-2.0.2

This commit is contained in:
Thomas Nagy 2017-10-22 10:34:57 +02:00
parent f67d5309f1
commit 4d481ab179
No known key found for this signature in database
GPG Key ID: 49B4C67C05277AAA
5 changed files with 19 additions and 6 deletions

View File

@ -1,3 +1,12 @@
NEW IN WAF 2.0.2
----------------
* Improve Intel Fortran compiler detection on Windows #2063
* Ensure that the task count starts at 1 in the build outputs
* Add a --pdb option to start pdb on unexpected exceptions #2052
* Add java support in protobuf (extras) #2049
* Add a java test example (extras) #2062
* Enable symbol processing for empty targets (extras) #2053
NEW IN WAF 2.0.1
----------------
* Improve the default preprocessor behaviour for gcc/msvc

6
TODO
View File

@ -1,4 +1,8 @@
Waf 2.1
-------
...
- Remove Winphone/WinCE detection in msvc.py
- Fix the circular imports ccroot<->c_config.py
- Remove superfluous *k in ctx.load() and other unused parameters
- Ensure conf.load() has the same interface as ctx.load()

View File

@ -32,7 +32,7 @@ POSSIBILITY OF SUCH DAMAGE.
import os, sys, inspect
VERSION="2.0.1"
VERSION="2.0.2"
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=0x2000100
HEXVERSION=0x2000200
"""Constant updated on new releases"""
WAFVERSION="2.0.1"
WAFVERSION="2.0.2"
"""Constant updated on new releases"""
WAFREVISION="8134aed186690ec78c3b3f358be65049067301cb"
WAFREVISION="f67d5309f185e9a52194a0f93bd0b83c2881defd"
"""Git revision when the waf version is updated"""
ABI = 20

View File

@ -11,7 +11,7 @@ To add a tool that does not exist in the folder compat15, pass an absolute path:
from __future__ import with_statement
VERSION="2.0.1"
VERSION="2.0.2"
APPNAME='waf'
REVISION=''