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:
authorMats Wichmann <mats@linux.com>2023-10-26 23:48:16 +0300
committerMats Wichmann <mats@linux.com>2023-10-28 17:17:30 +0300
commite9f5038505720300b9a9e9311cbd7fd6a1d8a393 (patch)
tree12a8ce4b153160a952cfd4364445825fa00f4e1b /CHANGES.txt
parente7258b088c7c7e87c9c33e3aedc79dd0a7cdf32f (diff)
Fix library literal prefix code
* Beef up _stripixes unittests * rename LIBLITERAL to LIBLITERALPREFIX * Initialize in Platform code, takes an error if not set when StringSubber.expand() is called with a string containing LIBLITERALPREFIX * Fix some bad typing markup. * Add docs Signed-off-by: Mats Wichmann <mats@linux.com>
Diffstat (limited to 'CHANGES.txt')
-rw-r--r--CHANGES.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index b9c41446d..a0e40d0e1 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -188,6 +188,9 @@ RELEASE VERSION/DATE TO BE FILLED IN LATER
avoid the GNU linker issuing warnings for its absence.
- Eliminate more http: references (mostly in comments/docstrings where
they really weren't harmful). A few links labeled dead with no alt.
+ - Add a LIBLITERALPREFIX variable which can be set to the linker's
+ prefix for considering a library argument unmodified (e.g. for the
+ GNU linker, the ':' in '-l:libfoo.a').
From Jonathon Reinhart: