交叉编译

就是添加相应的target, 然后使用相应的工具链进行编译。

添加target

比如我在debian上,添加windows的target

rustup target add x86_64-pc-windows-gnu

有哪些target可以添加,可以查看 https://doc.rust-lang.org/nightly/rustc/platform-support.html

编译到target

cargo build --release --target=x86_64-pc-windows-gnu

报错

error: linker x86_64-w64-mingw32-gcc not found

sudo apt-get install gcc-mingw-w64