mirror of
https://gitlab.com/ita1024/waf.git
synced 2024-11-21 17:35:55 +01:00
waf-2.0.18
This commit is contained in:
parent
314689b899
commit
ea17399be6
@ -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
|
||||
-----------------
|
||||
|
@ -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"
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user