前置作業
- 安裝 mingw64
如果您也是 OpenSUSE 的使用者,您可以參考此文 - rustup target add x86_64-pc-windows-gnu
設定
在 Linux 下面預設的 linker 是 gcc,但是編譯成 x86_64-pc-windows-gnu 執行檔時 linker 也是,怎麼辦呢?請把如下的內容放到 ~/.cargo/config 中
[target.x86_64-pc-windows-gnu] linker = "x86_64-w64-mingw32-gcc"
接著就可以開始編譯了:
cargo build --target=x86_64-pc-windows-gnu
沒有留言:
張貼留言