[libcxx-commits] [libcxx] [libc++] Add a design document for Windows support (PR #202668)
via libcxx-commits
libcxx-commits at lists.llvm.org
Tue Jun 9 07:10:58 PDT 2026
llvmorg-github-actions[bot] wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-libcxx
Author: Adam (siradam7th)
<details>
<summary>Changes</summary>
This adds a design document that sets the expectations for libc++ support on Windows.
The points added were discussed previously by different contributors in order to decide on which direction to take going forward (in multiple PRs that have addressed those topics).
Thank you.
---
Full diff: https://github.com/llvm/llvm-project/pull/202668.diff
1 Files Affected:
- (added) libcxx/docs/DesignDocs/WindowsSupport.rst (+17)
``````````diff
diff --git a/libcxx/docs/DesignDocs/WindowsSupport.rst b/libcxx/docs/DesignDocs/WindowsSupport.rst
new file mode 100644
index 0000000000000..2020691273441
--- /dev/null
+++ b/libcxx/docs/DesignDocs/WindowsSupport.rst
@@ -0,0 +1,17 @@
+===========
+Windows support
+===========
+
+Currently libc++ needs to link to the MSVC STL ``msvcprt`` library to implement part of the functionality on Windows. This dependency is counterintuitive since one standard library is depending on another standard library. Our goal is to remove this dependency by implementing the required functionality in libc++ itself.
+
+To achieve this, we have decided on the following:
+
+Goals:
+------
+
+- ``VCRuntime`` is the underlying ABI layer that libc++ will be using to implement the required functionality for Windows support.
+
+Non-Goals:
+---------
+
+- Interoperability with the MSVC STL in the case where both libraries are linked in the same binary is not a goal. For example if you link both libc++ and the MSVC STL in the same binary, a call to a function that needs to maintain internal state like ``std::set_new_handler`` from the libc++ side should not be expected to also change the MSVC STL internal state (since they are separate). We will be maintaining our own internal state for such functions, therefore any such functions should only be expected to have an effect on the libc++ side.
``````````
</details>
https://github.com/llvm/llvm-project/pull/202668
More information about the libcxx-commits
mailing list