Tell the musl container which world it is building - #181
Merged
Conversation
There are three cmake invocations in build-host.sh: stage 1, the staged path, and the musl container, which builds its arguments as a string of its own inside the container. The profile reached the first two. So a musl stage 2 configured without it, took the default world, and wrote a makepkg.conf saying CARCH=vita into a sysroot whose version_info.txt was copied from a softfp stage 1. validate-core-package.sh refused the result: world mismatch: version_info.txt says vita-softfp, bin/makepkg.conf CARCH says vita which is the check doing its job, an hour into the build. Pass it into the container and into that string. The test counts the invocations that carry the profile and checks the container is handed it, since a variable that never enters expands to nothing there.
frangarcj
force-pushed
the
profile-reaches-musl
branch
from
August 27, 2026 23:40
6f5402b to
3b6c890
Compare
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.
There are three cmake invocations in
build-host.sh: stage 1, the staged path, and the musl container, which builds its arguments as a string of its own inside the container. The profile reached the first two.So a musl stage 2 configured without it, took the default world, and wrote a
makepkg.confsayingCARCH=vitainto a sysroot whoseversion_info.txtwas copied from a softfp stage 1:validate-core-package.shrefused it, an hour into the build. The check did its job; the profile just never arrived.Pass it into the container with
-eand into that argument string. The test counts the invocations that carry the profile and checks the container is handed it, since a variable that never enters expands to nothing there.🤖 Generated with Claude Code