The distributable is the terminal artifact, and a library-form application stages its runtime files (#622) - #624
Merged
Conversation
…ation stages its runtime files (#622)
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.
Two defects the plugin half of #622 surfaced while packaging an Android application against the merged engine (#623), fixed before the 2026.9.12.3 tag.
mcpp pack --format <name>andmcpp run --format <name>report the request's terminal artifact: the output of an introducedartifactaction that no other introduced action consumes. A provider that is a chain (dist-apk: link, add libraries, align, sign) had its first output, the unsignedbase.apk, handed toadb-run, andadb installrefused it. Intermediate outputs are still verified to exist;mcpp runrefuses a format that ends in more than one file, naming them.tests/e2e/656now uses a two-step provider.kind = "app"on*-linux-android),mcpp packstaged onlylib/<name>.so; the filesdeployplaced underbin/<to>/never reached the staged tree, sodist-apk'sassets/was empty. They are staged at the same relative path underbin/as on every other row.tests/e2e/652bdeploys a file and asserts it.docs/10 and its zh mirror state the terminal-artifact rule; CHANGELOG
[Unreleased]carries both. Verified locally with the bootstrap 2026.9.12.2: e2e 656, 652b, 638, 651, 649 pass;mcpp test pack8 passed.