Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 478 Bytes

BUILD.md

File metadata and controls

24 lines (16 loc) · 478 Bytes

Building CotA

Linux

cargo build --release --target=x86_64-unknown-linux-gnu

Windows

Cross compiling to Windows is pretty straight forward.

Note: this is only for cross compiling a Windows build from Linux. To build from Windows, you should only need to run cargo build --release.

rustup target add x86_64-pc-windows-gnu
sudo dnf install mingw64-gcc
  • Build the project
cargo build --release --target=x86_64-pc-windows-gnu