diff options
| author | Odd Stranne <odd@mullvad.net> | 2018-04-06 12:00:48 +0200 |
|---|---|---|
| committer | Linus Färnstrand <linus@mullvad.net> | 2018-06-08 11:13:02 +0200 |
| commit | 037aae9b29585a41231d313655b69a1ccfb95ee8 (patch) | |
| tree | d7b8e9058cf0ccd9847b734b33180083316f4af1 | |
| parent | 10cd23ec7f869068244251d47962490e604ea068 (diff) | |
| download | mullvadvpn-037aae9b29585a41231d313655b69a1ccfb95ee8.tar.xz mullvadvpn-037aae9b29585a41231d313655b69a1ccfb95ee8.zip | |
For Rust, use static linkage to CRT
| -rw-r--r-- | .cargo/config | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.cargo/config b/.cargo/config new file mode 100644 index 0000000000..ba321231fc --- /dev/null +++ b/.cargo/config @@ -0,0 +1,5 @@ +[target.x86_64-pc-windows-msvc] +rustflags = ["-Ctarget-feature=+crt-static"] + +[target.i686-pc-windows-msvc] +rustflags = ["-Ctarget-feature=+crt-static"] |
