aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/cargo/.local/share
diff options
context:
space:
mode:
authorToby Vincent <tobyv@tobyvin.dev>2023-11-30 18:03:34 -0600
committerToby Vincent <tobyv@tobyvin.dev>2023-11-30 18:03:34 -0600
commit6bc99ba11271b8cd67fd48801b02c33e2e88871f (patch)
tree46d6e48fdf520bf43fa3d5ea45c3008067fa1d36 /cargo/.local/share
parenta77190919b2c87b6bd6908ac2d4c1e17769a931b (diff)
fix(cargo): add config options for using mingw
Diffstat (limited to 'cargo/.local/share')
-rw-r--r--cargo/.local/share/cargo/config.toml4
1 files changed, 4 insertions, 0 deletions
diff --git a/cargo/.local/share/cargo/config.toml b/cargo/.local/share/cargo/config.toml
index 70f9eae..25d5215 100644
--- a/cargo/.local/share/cargo/config.toml
+++ b/cargo/.local/share/cargo/config.toml
@@ -1,2 +1,6 @@
[registries.crates-io]
protocol = "sparse"
+
+[target.x86_64-pc-windows-gnu]
+linker = "/usr/bin/x86_64-w64-mingw32-gcc"
+ar = "/usr/bin/x86_64-w64-mingw32-ar"