Rust

Cross compile from linux

$ curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
$ rustup target add x86_64-pc-windows-gnu
$ sudo dnf install mingw64-gcc
$ cargo new --bin hello
$ cd hello 
$ cargo build --release --target=x86~64~-pc-windows-gnu --verbose