summaryrefslogtreecommitdiffstats
path: root/.cargo/config
diff options
context:
space:
mode:
authorJokler <jokler@protonmail.com>2020-06-22 03:43:10 +0200
committerJokler <jokler@protonmail.com>2020-06-22 03:43:10 +0200
commit5085d8e18ae0ece81f92a6ccc2007ec994cd2d09 (patch)
treecb1bcea8ab7b27dca570fd259f963bfc1571d6fe /.cargo/config
parentc5c0e26036a72ea2afab3bda1a68f113502d9e5c (diff)
downloaddotfiles-5085d8e18ae0ece81f92a6ccc2007ec994cd2d09.tar.gz
dotfiles-5085d8e18ae0ece81f92a6ccc2007ec994cd2d09.zip
Add cargo config for cross-compilingHEADmaster
Diffstat (limited to '.cargo/config')
-rw-r--r--.cargo/config6
1 files changed, 6 insertions, 0 deletions
diff --git a/.cargo/config b/.cargo/config
new file mode 100644
index 0000000..1ff397d
--- /dev/null
+++ b/.cargo/config
@@ -0,0 +1,6 @@
+[target.x86_64-pc-windows-gnu]
+linker = "/usr/bin/x86_64-w64-mingw32-gcc"
+ar = "/usr/x86_64-w64-mingw32/bin/ar"
+
+[target.armv7-unknown-linux-gnueabihf]
+linker = "arm-linux-gnueabihf-gcc"