[libcxx-commits] [libcxx] 8ab2c38 - [libcxx] [doc] Add a release note for distributors about MinGW builds and dllimport
Martin Storsjö via libcxx-commits
libcxx-commits at lists.llvm.org
Thu Jun 9 12:32:05 PDT 2022
Author: Martin Storsjö
Date: 2022-06-09T22:26:22+03:00
New Revision: 8ab2c384b8ad5afe4f23d02961ed7327d491aaf9
URL: https://github.com/llvm/llvm-project/commit/8ab2c384b8ad5afe4f23d02961ed7327d491aaf9
DIFF: https://github.com/llvm/llvm-project/commit/8ab2c384b8ad5afe4f23d02961ed7327d491aaf9.diff
LOG: [libcxx] [doc] Add a release note for distributors about MinGW builds and dllimport
This allows distributors to simplify how libc++ is built in MinGW
configurations.
Differential Revision: https://reviews.llvm.org/D127151
Added:
Modified:
libcxx/docs/ReleaseNotes.rst
Removed:
################################################################################
diff --git a/libcxx/docs/ReleaseNotes.rst b/libcxx/docs/ReleaseNotes.rst
index 2042b35fb73bd..8dc8733dd048d 100644
--- a/libcxx/docs/ReleaseNotes.rst
+++ b/libcxx/docs/ReleaseNotes.rst
@@ -184,3 +184,8 @@ Build System Changes
- The ``LIBCXX_ENABLE_DEBUG_MODE_SUPPORT`` CMake configuration is not supported anymore. If you
were disabling support for the debug mode with that flag, please use ``LIBCXX_ENABLE_BACKWARDS_COMPATIBILITY_DEBUG_MODE_SYMBOLS=OFF``
instead.
+
+- MinGW DLL builds of libc++ no longer use dllimport in their headers, which
+ means that the same set of installed headers works for both DLL and static
+ linkage. This means that distributors finally can build both library
+ versions with a single CMake invocation.
More information about the libcxx-commits
mailing list