mirror of
https://github.com/imjasonh/krust
synced 2026-07-08 06:45:32 +00:00
fix: use correct aarch64 linker for musl cross-compilation
Update cargo config to use aarch64-linux-gnu-gcc instead of aarch64-linux-musl-gcc, which matches what's available in CI. This resolves the "linker not found" error in CI builds. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
9edb878ca5
commit
170ce430f8
1 changed files with 1 additions and 1 deletions
|
|
@ -2,4 +2,4 @@
|
|||
linker = "x86_64-linux-musl-gcc"
|
||||
|
||||
[target.aarch64-unknown-linux-musl]
|
||||
linker = "aarch64-linux-musl-gcc"
|
||||
linker = "aarch64-linux-gnu-gcc"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue