This repository was archived by the owner on May 30, 2023. It is now read-only.
dev-lang/rust: store shell scripts under source dir instead of /tmp#125
Merged
pothos merged 1 commit intoflatcar-masterfrom Dec 2, 2019
Merged
dev-lang/rust: store shell scripts under source dir instead of /tmp#125pothos merged 1 commit intoflatcar-masterfrom
pothos merged 1 commit intoflatcar-masterfrom
Conversation
When building ebuilds under catalyst stage4, emerge cannot write data
outside of its chroot, under `/tmp` on the host. That's the reason
why the rust installation from toolchain fails like
`/tmp/cc.sh: Permission denied`.
That is no issue when building it under local SDK, because in that case
there is no toolchain installation involved.
So we should write the temporary scripts under `${S}`, for example,
`/mnt/host/source/src/build/catalyst/tmp/coreos-toolchains/stage4-amd64-2303.2.1/`.
pothos
approved these changes
Dec 2, 2019
Contributor
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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
When building ebuilds under catalyst stage4, emerge cannot write data outside of its chroot, under
/tmpon the host.That's the reason why the rust installation from toolchain fails like
/tmp/cc.sh: Permission denied.That is no issue when building it under local SDK, because in that case there is no toolchain installation involved.
So we should write the temporary scripts under
${S}, for example,/mnt/host/source/src/build/catalyst/tmp/coreos-toolchains/stage4-amd64-2303.2.1/.