ci(release): pin newer cross NDK image for aarch64-linux-android#86
Merged
Merged
Conversation
The default image bundled with cross 0.2.5 ships an NDK whose sysroot lacks libunwind on the linker path. Modern rustc emits `-lunwind` for Android targets, so the release build fails with `ld: cannot find -lunwind`. Override just the Android target to a digest-pinned cross main image, which ships an NDK that has libunwind available. All other targets keep their default cross 0.2.5 images. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Wenxin Jiang (Wenxin-Jiang)
approved these changes
May 27, 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.
Summary
aarch64-linux-androidwere failing withld: cannot find -lunwind. Modern rustc emits-lunwindfor Android targets, but the NDK bundled in cross 0.2.5's default Android image doesn't ship libunwind on the linker path (Targetaarch64-linux-androidlink failure: unwind. cross-rs/cross#1222, 0.17.7. briansmith/ring#1853).Cross.tomlthat overrides only the Android target to a digest-pinned cross main image (NDK r25+, libunwind available). All other targets keep their existing cross 0.2.5 images.:maintag, to stay reproducible.Test plan
aarch64-linux-androidmatrix job links cleanly.