waf 1.8.7, coming soon

This commit is contained in:
Thomas Nagy 2015-02-27 21:16:03 +01:00
parent 47a100480f
commit e49afff0fe
No known key found for this signature in database
GPG Key ID: 67A565EDFDF90E64
5 changed files with 14 additions and 6 deletions

View File

@ -1,10 +1,17 @@
NEW IN WAF 1.8.7
----------------
* Fixed the libdir suffix on Redhat 64-bit systems
* Fixed the default libdir installation suffix on Redhat 64-bit systems #1536
* Fixed the Python 2.6 detection on Redhat systems #1538
* Enabled gccdeps to work with clang
* Fixed the detection of clang from the gcc tools
* Added orig_run_str to help subclasses (do not use Task.hcode)
* Fixed the detection of older clang compilers versions
* NEC compiler support
* Enabled batched_cc.py to work with msvc too
* Enabled unity.py to process c files
* Faster dependency calculation in c_dumbpreproc
* New stracedeps example (cfg blog entry)
* Added support for xz compression in waf and waf dist (Python 3.5)
NEW IN WAF 1.8.6
----------------

1
TODO
View File

@ -5,6 +5,7 @@ Waf 1.9
* Provide a more efficient ConfigSet implementation
* Remove the split functions from Utils
* Ensure _cache.py are valid python files
* Include the tool 'nobuild' by default
Waf 1.8.x
---------

View File

@ -32,7 +32,7 @@ POSSIBILITY OF SUCH DAMAGE.
import os, sys, inspect
VERSION="1.8.6"
VERSION="1.8.7"
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=0x1080600
HEXVERSION=0x1080700
"""Constant updated on new releases"""
WAFVERSION="1.8.6"
WAFVERSION="1.8.7"
"""Constant updated on new releases"""
WAFREVISION="cc875ba2c2a7bd78d7a84b038f542339d6f34ce3"
WAFREVISION="e5056b9ade7bb224f53baab13a0ce136344ab602"
"""Git revision when the waf version is updated"""
ABI = 98

View File

@ -10,7 +10,7 @@ To add a tool that does not exist in the folder compat15, pass an absolute path:
"""
VERSION="1.8.6"
VERSION="1.8.7"
APPNAME='waf'
REVISION=''