From efa5857c0db249ffbcaa84e5120722fa4db315db Mon Sep 17 00:00:00 2001 From: Tamir Duberstein Date: Tue, 7 Oct 2025 09:21:07 -0700 Subject: [PATCH] .cargo/config: use musl-cross on x86_64 as well This allows us to run virtualized integration tests on macOS hosts. --- .cargo/config.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.cargo/config.toml b/.cargo/config.toml index a21a5f44..0584e1b4 100644 --- a/.cargo/config.toml +++ b/.cargo/config.toml @@ -10,6 +10,9 @@ linker = "arm-linux-gnueabihf-gcc" [target.aarch64-unknown-linux-musl] linker = "aarch64-linux-musl-gcc" +[target.x86_64-unknown-linux-musl] +linker = "x86_64-linux-musl-gcc" + [target.powerpc64le-unknown-linux-gnu] linker = "powerpc64le-linux-gnu-gcc"