From c388e086b61f13384365e8d2ec71fbf13cbb0b7d Mon Sep 17 00:00:00 2001 From: Yeastplume Date: Tue, 26 Feb 2019 16:48:45 +0000 Subject: [PATCH] windows cargo settings (#2632) --- .cargo/config | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 .cargo/config diff --git a/.cargo/config b/.cargo/config new file mode 100644 index 000000000..98b5c3744 --- /dev/null +++ b/.cargo/config @@ -0,0 +1,4 @@ +[target.x86_64-pc-windows-msvc] +rustflags = ["-Ctarget-feature=+crt-static"] +[target.i686-pc-windows-msvc] +rustflags = ["-Ctarget-feature=+crt-static"]