Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/SCons/scons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Brill <48932340+jcbrill@users.noreply.github.com>2023-10-15 13:56:51 +0300
committerJoseph Brill <48932340+jcbrill@users.noreply.github.com>2023-10-15 13:56:51 +0300
commit4a01e14a5ed000874d92de3b708606fb9e7ebcdb (patch)
treeb306add72c9600973236350126d4f6e93466cc16 /CHANGES.txt
parent494d4d2e55cc578ec711a74643f617982c847f3d (diff)
parent83f8e5fcca75439fa62ee6e6aa92198eb7283a0b (diff)
Merge branch 'master' into jbrill-msvc-clsearch
Manually resolved conflicts: * CHANGES.txt
Diffstat (limited to 'CHANGES.txt')
-rw-r--r--CHANGES.txt7
1 files changed, 7 insertions, 0 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 97924dd6e..893244686 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -42,6 +42,11 @@ RELEASE VERSION/DATE TO BE FILLED IN LATER
registry query that returns a path that does not exist. Multiple invocation
paths were not prepared to handle the MissingConfiguration exception. The
MissingConfiguration exception type was removed.
+ - The MSCommon module import was changed from a relative import to a top-level
+ absolute import in the following Microsoft tools: midl, mslib, mslink, mssdk, msvc,
+ msvs. Moving any of these tools that used relative imports to the scons site tools
+ folder would fail on import (i.e., the relative import paths become invalid when
+ moved).
- The detection of the msvc compiler executable (cl.exe) has been modified. The
compiler detection no longer considers the host os environment path. In addition,
existence of the msvc compiler executable is checked in the detection dictionary
@@ -186,6 +191,8 @@ RELEASE VERSION/DATE TO BE FILLED IN LATER
Python stdlib types module.
- TeX tests: skip tests that use makeindex or epstopdf not installed, or
if `kpsewhich glossaries.sty` fails.
+ - Added a .note.GNU-stack section to the test assembler files to
+ avoid the GNU linker issuing warnings for its absence.
From Jonathon Reinhart: