0.9.2: dist-apple places deployed files at the bundle's resource destination (mcpp#630) - #22
Merged
Merged
Conversation
…ource destination, and the iOS fixture declares its runtime packages (mcpp#630)
…CI measures under mcpp 2026.9.13.2
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.
mcpp 2026.9.13.2 stages a Mach-O program's tree before the closure walk (#630, item 3a):
bin/<name>and everymcpp::deploy'd file underbin/<to>/..., handed to a dispatched format withclosure = not-walkedin the stage manifest.dist-appleused to copy that tree whole intoContents/MacOS/, which put the executable atContents/MacOS/bin/<name>and the resources beside it.From 0.9.2 the launcher alone goes to the executable directory and every other top-level entry of the staged
bin/goes to the bundle's resource destination:Contents/Resources/<to>/...on macOS, the bundle root on iOS. Onedittoaction per entry, each an input of the bundle step.The iOS fixture declares
llvm.libcxxandllvm.compiler-rt-builtinsundercfg(os = "ios"), which is what an application that importsstddeclares on those rows from 2026.9.13.2 (mcppdocs/20, "The C++ runtime and the compiler runtime are packages on these rows"). Both fixtures deploy a file, and the macOS CI asserts where it lands.CI is pinned to mcpp 2026.9.13.2.