diff options
author | William Deegan <bill@baddogconsulting.com> | 2020-01-30 20:08:43 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2020-01-30 20:08:43 (GMT) |
commit | 337906cbc01693f4daff40bb22028b8a39f0bc6d (patch) | |
tree | 3d834cf542453fddb3a047582675d8b7d3a3bef4 | |
parent | d5c96ca94fcd8498d480c620b6319d9c13b8aeff (diff) | |
download | SCons-337906cbc01693f4daff40bb22028b8a39f0bc6d.zip SCons-337906cbc01693f4daff40bb22028b8a39f0bc6d.tar.gz SCons-337906cbc01693f4daff40bb22028b8a39f0bc6d.tar.bz2 |
Add blurb to src/CHANGES.txt
-rwxr-xr-x | src/CHANGES.txt | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/CHANGES.txt b/src/CHANGES.txt index 44b478f..ad936e4 100755 --- a/src/CHANGES.txt +++ b/src/CHANGES.txt @@ -16,6 +16,18 @@ RELEASE VERSION/DATE TO BE FILLED IN LATER is a reasonable default and also aligns with changes in Appveyor's VS2019 image. - Drop support for Python 2.7. SCons will be Python 3.5+ going forward. + From Andrew Morrow: + - Fix Issue #3469 - Fixed improper reuse of temporary and compiled files by Configure when changing + the order and/or number of tests. This is done by using the hash of the generated temporary files + content and (For the target files) the hash of the action. + So where previously files would be named: + - config_1.c, config_1.o, config_1 + The will now be named (For example) + - conftest_68b375d16e812c43e6d72d6e93401e7c_0.c, + conftest_68b375d16e812c43e6d72d6e93401e7c_0_5713f09fc605f46b2ab2f7950455f187.o + or + conftest_68b375d16e812c43e6d72d6e93401e7c_0.o + conftest_68b375d16e812c43e6d72d6e93401e7c_0_5713f09fc605f46b2ab2f7950455f187 (for executable) From Mathew Robinson: - Improve performance of Subst by preventing unnecessary frame |