fix: add missing avm-transpiler-cross-arm64-linux Makefile target#20920
Closed
AztecBot wants to merge 2 commits into
Closed
fix: add missing avm-transpiler-cross-arm64-linux Makefile target#20920AztecBot wants to merge 2 commits into
AztecBot wants to merge 2 commits into
Conversation
fbef6bf to
7433672
Compare
## Summary - The `bb-cpp-cross-arm64-linux` Makefile target depended on `avm-transpiler-native` instead of a cross-compiled arm64-linux avm-transpiler - This caused `ninja` to fail because `libavm_transpiler.a` was missing at the `aarch64-unknown-linux-gnu` target path - Adds the missing `avm-transpiler-cross-arm64-linux` target and fixes the dependency so the correct cross-compiled library is built before the barretenberg ARM64 Linux link step Follows up on #20814 which added avm-transpiler arm64-linux support to `bootstrap.sh` and `CMakePresets.json`, but the Makefile (introduced later) was never wired up. [ClaudeBox log](http://ci.aztec-labs.com/368dc57b68117599-1)
7433672 to
e5d78e3
Compare
The barretenberg-rs release function would fail if generated files (api.rs, generated_types.rs) weren't present, even though it knows how to generate them. Now it generates them on-the-fly instead of erroring out.
auto-merge was automatically disabled
February 27, 2026 02:59
Pull request was closed
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
bb-cpp-cross-arm64-linuxtarget depended onavm-transpiler-nativeinstead of a cross-compiled arm64-linux avm-transpiler, so the cross-compiledlibavm_transpiler.awas never built. Adds the missingavm-transpiler-cross-arm64-linuxtarget and fixes the dependency.releasefunction would error out if generated Rust bindings (api.rs,generated_types.rs) weren't present, even though it's trivial to generate them. Now generates them on-the-fly instead of failing.Follows up on #20814 which added avm-transpiler arm64-linux support.