1
0
Fork 0
mirror of https://github.com/imjasonh/krust synced 2026-07-08 06:45:32 +00:00

Fix CI: Update cargo config to use correct linker names

The CI was failing because the .cargo/config.toml specified linker
names that don't match what's available in Ubuntu's musl-tools and
gcc-aarch64-linux-gnu packages.

- Changed x86_64-unknown-linux-musl-gcc to x86_64-linux-musl-gcc
- Changed aarch64-unknown-linux-musl-gcc to aarch64-linux-gnu-gcc

These are the actual binary names provided by the Ubuntu packages
installed in CI.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Jason Hall 2025-06-07 22:36:20 -04:00
parent 6153452303
commit 45ba88984d
Failed to extract signature

View file

@ -1,5 +1,5 @@
[target.x86_64-unknown-linux-musl]
linker = "x86_64-unknown-linux-musl-gcc"
linker = "x86_64-linux-musl-gcc"
[target.aarch64-unknown-linux-musl]
linker = "aarch64-unknown-linux-musl-gcc"
linker = "aarch64-linux-gnu-gcc"