blob: 03fcedf418a63b6e206c3b91ce9f6879398775f5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
# This does make the final binary a *little bit* fast but it also fails to
# compile on some machines, it's up to you how you handle this.
#[build]
#rustflags = ["-Ctarget-cpu=native"]
[target.x86_64-pc-windows-gnu]
linker = "x86_64-w64-mingw-gcc"
ar = "x86_64-w64-mingw-gcc-ar"
rustflags = ["-C", "target-feature=+crt-static"]
|