diff options
author | Ruben Di Battista <rubendibattista@gmail.com> | 2025-01-26 23:29:24 (GMT) |
---|---|---|
committer | Ruben Di Battista <rubendibattista@gmail.com> | 2025-01-26 23:36:48 (GMT) |
commit | 5c1ee17e4341a7b702e241b0619d106919e63b17 (patch) | |
tree | 21434119d7bf6dc6571dfa163501597da9c79657 | |
parent | dae3e49cd61da02e927a0ed4bda2f2c6cb5d27cf (diff) | |
download | SCons-5c1ee17e4341a7b702e241b0619d106919e63b17.zip SCons-5c1ee17e4341a7b702e241b0619d106919e63b17.tar.gz SCons-5c1ee17e4341a7b702e241b0619d106919e63b17.tar.bz2 |
:memo: Add change summary
-rw-r--r-- | CHANGES.txt | 4 | ||||
-rw-r--r-- | RELEASE.txt | 1 | ||||
-rw-r--r-- | doc/man/scons.xml | 1 |
3 files changed, 6 insertions, 0 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index 97f7be2..7903724 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -12,6 +12,10 @@ NOTE: Python 3.6 support is deprecated and will be dropped in a future release. RELEASE VERSION/DATE TO BE FILLED IN LATER + From Ruben Di Battista: + - Expose `extra_libs` kwarg in the `CheckLibWithHeader` and forward it downstream + to `CheckLib` + From Joseph Brill: - Added error handling when creating MSVC detection debug log file specified by SCONS_MSCOMMON_DEBUG. diff --git a/RELEASE.txt b/RELEASE.txt index 1b823b9..c4f9fe5 100644 --- a/RELEASE.txt +++ b/RELEASE.txt @@ -25,6 +25,7 @@ DEPRECATED FUNCTIONALITY CHANGED/ENHANCED EXISTING FUNCTIONALITY --------------------------------------- +- Expose the `extra_libs` keyword argument in `CheckLibWithHeader` - List modifications to existing features, where the previous behavior wouldn't actually be considered a bug diff --git a/doc/man/scons.xml b/doc/man/scons.xml index 979f67d..4119a45 100644 --- a/doc/man/scons.xml +++ b/doc/man/scons.xml @@ -4244,6 +4244,7 @@ to serve as the test can be supplied in if not supplied, the default checks the ability to link against the specified <parameter>library</parameter>. +<parameter>extra_libs</parameter> can be used to add additional libraries to link against. If <parameter>autoadd</parameter> is true (the default), the first library that passes the check is added to the &cv-link-LIBS; &consvar; in the context |