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:
parent
6153452303
commit
45ba88984d
1 changed files with 2 additions and 2 deletions
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue