summaryrefslogtreecommitdiffstats
path: root/Help
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2022-11-29 15:15:46 (GMT)
committerKitware Robot <kwrobot@kitware.com>2022-11-29 15:15:57 (GMT)
commit4751c9399e9602de87166efacdf42eb6b72c52d1 (patch)
tree574e22a38d2180546512708cc08edb0d8d55e517 /Help
parentee28b8c53235740b167b6bf60c594f62c45a5221 (diff)
parent955d6245c14a4bfe8b4a7a2304ec998bfc6a5561 (diff)
downloadCMake-4751c9399e9602de87166efacdf42eb6b72c52d1.zip
CMake-4751c9399e9602de87166efacdf42eb6b72c52d1.tar.gz
CMake-4751c9399e9602de87166efacdf42eb6b72c52d1.tar.bz2
Merge topic 'revert-find_library-msvc-libfoo.a'
955d6245c1 MSVC: Revert "Teach find_library to consider the 'libfoo.a' naming convention" Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !7962
Diffstat (limited to 'Help')
-rw-r--r--Help/release/3.25.rst18
1 files changed, 13 insertions, 5 deletions
diff --git a/Help/release/3.25.rst b/Help/release/3.25.rst
index 7d0cf0a..fdf8a94 100644
--- a/Help/release/3.25.rst
+++ b/Help/release/3.25.rst
@@ -223,11 +223,6 @@ Deprecated and Removed Features
Other Changes
=============
-* On Windows, when targeting the MSVC ABI, the :command:`find_library` command
- now accepts ``.a`` file names after first considering ``.lib``. This is
- symmetric with existing behavior when targeting the GNU ABI, in which the
- command accepts ``.lib`` file names after first considering ``.a``.
-
* The :envvar:`SSL_CERT_FILE` and :envvar:`SSL_CERT_DIR` environment
variables can now be used to override where to find certificate
authorities for TLS/SSL operations.
@@ -238,3 +233,16 @@ Other Changes
* The :generator:`Xcode` generator no longer adds the per-config suffix
``$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)`` to library search paths.
See policy :policy:`CMP0142`.
+
+Updates
+=======
+
+Changes made since CMake 3.25.0 include the following.
+
+3.25.1
+------
+
+* On Windows, when targeting the MSVC ABI, the :command:`find_library`
+ command no longer accepts ``.a`` file names. This behavior was added
+ in CMake 3.25.0, but has been reverted due finding GNU-ABI libraries
+ in cases we did not previously.