summaryrefslogtreecommitdiffstats
path: root/.cargo
diff options
context:
space:
mode:
authorClement Tsang <34804052+ClementTsang@users.noreply.github.com>2020-09-02 02:59:51 -0400
committerGitHub <noreply@github.com>2020-09-02 02:59:51 -0400
commit22278d7d75d3e5c582af2c178bad99014b570fe0 (patch)
tree06f26b86c1b46bcd4ad843fb72882ab30d1bcf84 /.cargo
parent663ae6c5c25a2ef88eff856c202265c8a1455f06 (diff)
other: aarch64 support (#217)
Adds theoretical aarch64 support.
Diffstat (limited to '.cargo')
-rw-r--r--.cargo/config.toml4
1 files changed, 4 insertions, 0 deletions
diff --git a/.cargo/config.toml b/.cargo/config.toml
index 98b5c374..7a79ed3a 100644
--- a/.cargo/config.toml
+++ b/.cargo/config.toml
@@ -1,4 +1,8 @@
[target.x86_64-pc-windows-msvc]
rustflags = ["-Ctarget-feature=+crt-static"]
+
[target.i686-pc-windows-msvc]
rustflags = ["-Ctarget-feature=+crt-static"]
+
+[target.armv7-unknown-linux-gnueabihf]
+linker = "arm-linux-gnueabihf-gcc" \ No newline at end of file