libstdc++: move libc++23convenience.la from experimental to libstdc++ #117
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
libc++23convenience.la
is still in theexperimental
section, not integrated into the mainlibstdc++
,which leads to the precompiled static library
libstdc++.a
not including the necessary C++23 features,specifically the
<print>
library.For Windows MinGW-w64 builds, the following issues are observed:
Even if you specify
-std=c++23
flag, you cannot usestd::print()
and other functions due to missing linkage,you need to link against the
libstdc++exp
library manually.I'm not sure if the C++23 features were intentionally excluded from the
libstdc++.a
static library, or just forgotten.