1
0
Fork 0
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:
Jason Hall 2025-06-08 20:09:55 -04:00
parent 9edb878ca5
commit 170ce430f8
Failed to extract signature

View file

@ -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"