From 1393d04ebc2662a392419c6512eb58b6ef13f2b5 Mon Sep 17 00:00:00 2001 From: DaXcess Date: Sat, 23 Sep 2023 23:50:28 +0200 Subject: [PATCH] Add aarch64 compiler support --- .cargo/config.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.cargo/config.toml b/.cargo/config.toml index 913f2d5..3707b70 100644 --- a/.cargo/config.toml +++ b/.cargo/config.toml @@ -4,3 +4,5 @@ protocol = "sparse" [target.x86_64-pc-windows-gnu] rustflags = "-C link-args=-lssp" # Does not compile without this line +[target.aarch64-unknown-linux-gnu] +rustflags = "-C linker=aarch64-linux-gnu-gcc" \ No newline at end of file