From c678342a5b934bf00de0d77b7cd22ca63bd52565 Mon Sep 17 00:00:00 2001 From: Jason Hall Date: Sun, 8 Jun 2025 20:53:53 -0400 Subject: [PATCH] fix: use correct musl linker name in CI MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Change from x86_64-linux-musl-gcc to musl-gcc (provided by musl-tools package) - Keep aarch64-linux-gnu-gcc for ARM64 cross-compilation 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3c92719..a81134e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -48,7 +48,7 @@ jobs: mkdir -p .cargo cat > .cargo/config.toml << 'EOF' [target.x86_64-unknown-linux-musl] - linker = "x86_64-linux-musl-gcc" + linker = "musl-gcc" [target.aarch64-unknown-linux-musl] linker = "aarch64-linux-gnu-gcc"