waf-2.0.18

This commit is contained in:
Thomas Nagy 2019-07-14 10:44:58 +02:00
parent 314689b899
commit ea17399be6
No known key found for this signature in database
GPG Key ID: 49B4C67C05277AAA
4 changed files with 12 additions and 6 deletions

View File

@ -4,8 +4,14 @@ NEW IN WAF 2.0.18
* Fix rpath processing so that it no longer breaks dependency chains
* Fix fast_partial.py failures on configuration tests
* Fix duplicate -fno-strict-aliasing flags in Python compilation flags detection
* Fix annoying PIE errors in demos/asm/
* Improve configuration tests cache accuracy #2251
* Improve extras/fast_partial.py compatibility
* Improve extras/doxygen.py outdir parameter settings #2255
* Add a dependency scanner for assembly files (Gas/Yasm)
* Add a QtTest example to demos/qt5/
* Add executable arguments for configuration tests / execute=True
* Add a QtTest example to demos/qt5/ #2241
* Add a cross-compilation option to extras/objcopy.py #2247
NEW IN WAF 2.0.17
-----------------

View File

@ -32,7 +32,7 @@ POSSIBILITY OF SUCH DAMAGE.
import os, sys, inspect
VERSION="2.0.17"
VERSION="2.0.18"
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=0x2001100
HEXVERSION=0x2001200
"""Constant updated on new releases"""
WAFVERSION="2.0.17"
WAFVERSION="2.0.18"
"""Constant updated on new releases"""
WAFREVISION="6bc6cb599c702e985780e9f705b291b812123693"
WAFREVISION="314689b8994259a84f0de0aaef74d7ce91f541ad"
"""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.17"
VERSION="2.0.18"
APPNAME='waf'
REVISION=''