summaryrefslogtreecommitdiffstats
path: root/.cargo/config.toml
diff options
context:
space:
mode:
authorClement Tsang <34804052+ClementTsang@users.noreply.github.com>2020-09-03 12:22:02 -0400
committerGitHub <noreply@github.com>2020-09-03 12:22:02 -0400
commit54a35d632e7d5ee8ff0129864a929899fce48e5e (patch)
tree47167edbfdb85b7736408192ba2329534154dc67 /.cargo/config.toml
parent33b37bb5ace747c68826ed27886e1d96bd238f3d (diff)
other: Windows compilation stuff (#222)
Some Windows compilation/deploy stuff. Mostly just a catch-all for some chores.
Diffstat (limited to '.cargo/config.toml')
-rw-r--r--.cargo/config.toml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.cargo/config.toml b/.cargo/config.toml
index 7a79ed3a..811ae258 100644
--- a/.cargo/config.toml
+++ b/.cargo/config.toml
@@ -1,8 +1,8 @@
[target.x86_64-pc-windows-msvc]
-rustflags = ["-Ctarget-feature=+crt-static"]
+rustflags = ["-C", "target-feature=+crt-static"]
[target.i686-pc-windows-msvc]
-rustflags = ["-Ctarget-feature=+crt-static"]
+rustflags = ["-C", "target-feature=+crt-static"]
[target.armv7-unknown-linux-gnueabihf]
linker = "arm-linux-gnueabihf-gcc" \ No newline at end of file