summaryrefslogtreecommitdiffstats
path: root/RELEASE.txt
diff options
context:
space:
mode:
authorWilliam Deegan <bill@baddogconsulting.com>2022-05-05 00:46:26 (GMT)
committerGitHub <noreply@github.com>2022-05-05 00:46:26 (GMT)
commit168e232155eed26cbaa050dcae2c0a33b0468431 (patch)
treeeb40ad4cd77b422edd84410b48bc11d6f1afecc7 /RELEASE.txt
parent3f3d591f04458a763284b5e68420ed46519e4c0d (diff)
parentd3d18a9fed97d5d6d63218f52ffc324cc5c1b421 (diff)
downloadSCons-168e232155eed26cbaa050dcae2c0a33b0468431.zip
SCons-168e232155eed26cbaa050dcae2c0a33b0468431.tar.gz
SCons-168e232155eed26cbaa050dcae2c0a33b0468431.tar.bz2
Merge branch 'master' into master
Diffstat (limited to 'RELEASE.txt')
-rwxr-xr-xRELEASE.txt7
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.