From d983d632f830f57bf0bcb099014f40c362bad253 Mon Sep 17 00:00:00 2001 From: John Rogers Date: Mon, 21 Jul 2025 20:23:57 +0100 Subject: [PATCH] build: set linker for x86_64-unknown-linux-gnu target --- .cargo/config.toml | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 .cargo/config.toml diff --git a/.cargo/config.toml b/.cargo/config.toml new file mode 100644 index 0000000..d61b209 --- /dev/null +++ b/.cargo/config.toml @@ -0,0 +1,2 @@ +[target.x86_64-unknown-linux-gnu] +linker = "x86_64-unknown-linux-gnu-gcc"