summaryrefslogtreecommitdiffstats
path: root/Help/release
diff options
context:
space:
mode:
authorDaniel Ching <carterbox@users.noreply.github.com>2023-12-07 04:47:47 (GMT)
committerDaniel Ching <carterbox@users.noreply.github.com>2023-12-08 01:19:00 (GMT)
commitf20c5c6f20aa7eab9e43919fffbf5b00281d1461 (patch)
tree33857e147a1cd011f444912010879c53d28dbe91 /Help/release
parent7598ea5389e04862c567b43d7c08fbbc66512f37 (diff)
downloadCMake-f20c5c6f20aa7eab9e43919fffbf5b00281d1461.zip
CMake-f20c5c6f20aa7eab9e43919fffbf5b00281d1461.tar.gz
CMake-f20c5c6f20aa7eab9e43919fffbf5b00281d1461.tar.bz2
MSVC: Teach find_library to consider Rust's '${name}.dll.lib' convention
This convention is used by Rust toolchains (rustc/cargo/cargo-c) for the MSVC ABI. Fixes: #25478
Diffstat (limited to 'Help/release')
-rw-r--r--Help/release/dev/find-rustc-importlibs.rst6
1 files changed, 6 insertions, 0 deletions
diff --git a/Help/release/dev/find-rustc-importlibs.rst b/Help/release/dev/find-rustc-importlibs.rst
new file mode 100644
index 0000000..646afff
--- /dev/null
+++ b/Help/release/dev/find-rustc-importlibs.rst
@@ -0,0 +1,6 @@
+find-rustc-importlibs
+---------------------
+
+* On Windows, when targeting the MSVC ABI, the :command:`find_library` command
+ now considers ``.dll.lib`` file names before ``.lib``. This is the default
+ suffix for DLL import libraries created by Rust toolchains for the MSVC ABI.