waf-2.0.20

This commit is contained in:
Thomas Nagy 2020-03-28 09:16:58 +01:00
parent 6687694709
commit f1d78d1246
No known key found for this signature in database
GPG Key ID: 49B4C67C05277AAA
4 changed files with 16 additions and 5 deletions

View File

@ -1,3 +1,14 @@
NEW IN WAF 2.0.20
-----------------
* Detect -flto and -fno-lto in parse_config #2281
* Improve custom option processing #2280
* Enable Clang on cygwin #2279
* Make distclean target 'no_lock_in_top/run' modifiers compatible with env vars #2271
* Update irix compiler detection
* Exclude ConfigSet from altering ConfigurationContext.run_build caches #2273
* Add gas support in extras/gccdeps.py #2278
* Improve compatibility with custom commands in extras/clang_compilation_database #2274
NEW IN WAF 2.0.19
-----------------
* Enable race-free pdb file generation waflib/extras/msvc_pdb.py #1731

View File

@ -32,7 +32,7 @@ POSSIBILITY OF SUCH DAMAGE.
import os, sys, inspect
VERSION="2.0.19"
VERSION="2.0.20"
REVISION="x"
GIT="x"
INSTALL="x"

View File

@ -18,13 +18,13 @@ else:
import imp
# the following 3 constants are updated on each new release (do not touch)
HEXVERSION=0x2001300
HEXVERSION=0x2001400
"""Constant updated on new releases"""
WAFVERSION="2.0.19"
WAFVERSION="2.0.20"
"""Constant updated on new releases"""
WAFREVISION="e83405712e95b47c040763fdfa468c04dfe72e4b"
WAFREVISION="668769470956da8c5b60817cb8884cd7d0f87cd4"
"""Git revision when the waf version is updated"""
WAFNAME="waf"

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.19"
VERSION="2.0.20"
APPNAME='waf'
REVISION=''