mirror of
https://gitlab.com/ita1024/waf.git
synced 2024-11-22 01:46:15 +01:00
waf-2.0.2
This commit is contained in:
parent
f67d5309f1
commit
4d481ab179
@ -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
|
NEW IN WAF 2.0.1
|
||||||
----------------
|
----------------
|
||||||
* Improve the default preprocessor behaviour for gcc/msvc
|
* Improve the default preprocessor behaviour for gcc/msvc
|
||||||
|
6
TODO
6
TODO
@ -1,4 +1,8 @@
|
|||||||
Waf 2.1
|
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()
|
||||||
|
|
||||||
|
@ -32,7 +32,7 @@ POSSIBILITY OF SUCH DAMAGE.
|
|||||||
|
|
||||||
import os, sys, inspect
|
import os, sys, inspect
|
||||||
|
|
||||||
VERSION="2.0.1"
|
VERSION="2.0.2"
|
||||||
REVISION="x"
|
REVISION="x"
|
||||||
GIT="x"
|
GIT="x"
|
||||||
INSTALL="x"
|
INSTALL="x"
|
||||||
|
@ -11,13 +11,13 @@ from waflib import Utils, Errors, Logs
|
|||||||
import waflib.Node
|
import waflib.Node
|
||||||
|
|
||||||
# the following 3 constants are updated on each new release (do not touch)
|
# the following 3 constants are updated on each new release (do not touch)
|
||||||
HEXVERSION=0x2000100
|
HEXVERSION=0x2000200
|
||||||
"""Constant updated on new releases"""
|
"""Constant updated on new releases"""
|
||||||
|
|
||||||
WAFVERSION="2.0.1"
|
WAFVERSION="2.0.2"
|
||||||
"""Constant updated on new releases"""
|
"""Constant updated on new releases"""
|
||||||
|
|
||||||
WAFREVISION="8134aed186690ec78c3b3f358be65049067301cb"
|
WAFREVISION="f67d5309f185e9a52194a0f93bd0b83c2881defd"
|
||||||
"""Git revision when the waf version is updated"""
|
"""Git revision when the waf version is updated"""
|
||||||
|
|
||||||
ABI = 20
|
ABI = 20
|
||||||
|
Loading…
Reference in New Issue
Block a user