From 9ddf6467b4212132fb12966a861e10207867fab2 Mon Sep 17 00:00:00 2001 From: DanyLE Date: Mon, 20 Mar 2023 17:46:35 +0100 Subject: [PATCH] feat: support for cross-compile on ARM64 and ARMv7HF --- .cargo/config | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .cargo/config diff --git a/.cargo/config b/.cargo/config new file mode 100644 index 0000000..beb596d --- /dev/null +++ b/.cargo/config @@ -0,0 +1,5 @@ +[target.aarch64-unknown-linux-gnu] +linker = "aarch64-linux-gnu-gcc" + +[target.armv7-unknown-linux-gnueabihf] +linker = "arm-linux-gnueabihf-gcc"