diff options
author | William Deegan <bill@baddogconsulting.com> | 2022-05-05 00:46:26 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-05 00:46:26 (GMT) |
commit | 168e232155eed26cbaa050dcae2c0a33b0468431 (patch) | |
tree | eb40ad4cd77b422edd84410b48bc11d6f1afecc7 /RELEASE.txt | |
parent | 3f3d591f04458a763284b5e68420ed46519e4c0d (diff) | |
parent | d3d18a9fed97d5d6d63218f52ffc324cc5c1b421 (diff) | |
download | SCons-168e232155eed26cbaa050dcae2c0a33b0468431.zip SCons-168e232155eed26cbaa050dcae2c0a33b0468431.tar.gz SCons-168e232155eed26cbaa050dcae2c0a33b0468431.tar.bz2 |
Merge branch 'master' into master
Diffstat (limited to 'RELEASE.txt')
-rwxr-xr-x | RELEASE.txt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/RELEASE.txt b/RELEASE.txt index 2ed4a8b..6bb1546 100755 --- a/RELEASE.txt +++ b/RELEASE.txt @@ -69,6 +69,13 @@ FIXES default compiler to MSVC which wasn't installed, yielding broken build. Updated mingw tool so that the generate and exists methods use the same mingw search paths (issue #4134). +- Ninja: Added NINJA_GENERATED_SOURCE_ALIAS_NAME which allows user to specify an + Alias() which the ninja tool can use to determine which files are generated sources. + If this is not set by the user then the ninja tool will still dynamically determine + which files are generated sources based on NINJA_GENERATED_SOURCE_SUFFIXES, and create + a phony target _ninja_generated_sources. Generated sources will be built first by + ninja. This is needed because ninja cannot determine which generated sources are + required by other build targets. Code contributed by MongoDB. - Added special case for ninja scons daemon to work in win32 python3.6 environments. This particular environment does a bad job managing popen standard file handles, so some special workarounds are needed. |