0.9.3 --- follow openkal-musl 0.13.2 - #18
Merged
Merged
Conversation
Carries openkal-musl 0.13.2, which fixes a defect every C++ consumer of this package on Windows is exposed to: musl's C++ pthread_t was thirty-two bits there, so a std::thread faulted when it was joined. A version requirement here is exact, so consumers reach the fix only through this release. examples/cxx now starts and joins a std::thread, and the host jobs run it.
This was referenced Sep 13, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Carries openkal-musl 0.13.2 (mcpplibs/openkal-musl#31), which fixes a defect
every C++ consumer of this package on Windows is exposed to: musl declared
pthread_tasunsigned longfor C++, thirty-two bits on LLP64 Windows, solibc++'s
std::threadkept half of the thread's address and the join ended theprogram with
0xC0000005.A version requirement in this manifest is exact — a consumer that declares
openkal-musl = "0.13.2"besideopenkal-llvm-runtime = "0.9.2"is refused asirreconcilable — so consumers reach the fix only through a release of this
package.
openkal-musl = "0.13.2", version 0.9.3.examples/cxxstarts and joins astd::thread, and the macOS and Windows hostjobs now run that example natively and require the thread observation (its
filesystem observations were written for Linux and are reported, not required).
Measured under Wine with this change:
ok: a thread is started and joined.