# Crosscompiling ## Linux to Windows ### Dependencies ``` console $ rustup target list $ rustup target add x86_64-pc-windows-gnu $ sudo apt install mingw-w64 ``` ### Building ``` console $ cargo build --release --target=x86_64-pc-windows-gnu ```