From 521db292d21856be6be32ff16bb5f3675ee482ac Mon Sep 17 00:00:00 2001 From: Aram Peres Date: Sat, 31 Jul 2021 01:26:20 -0400 Subject: [PATCH] Try specifying linkers --- .cargo/config | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .cargo/config diff --git a/.cargo/config b/.cargo/config new file mode 100644 index 0000000..704b897 --- /dev/null +++ b/.cargo/config @@ -0,0 +1,8 @@ +[target.aarch64-unknown-linux-gnu] +linker = "aarch64-linux-gnu-gcc" + +[target.arm-unknown-linux-gnueabihf] +linker = "arm-linux-gnueabihf-gcc" + +[target.armv7-unknown-linux-gnueabihf] +linker = "arm-linux-gnueabihf-gcc"