Skip to content

Instantly share code, notes, and snippets.

@kmatt
Last active July 18, 2023 14:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kmatt/4d2bb9e19e1758c3410435ad3c407d7b to your computer and use it in GitHub Desktop.
Save kmatt/4d2bb9e19e1758c3410435ad3c407d7b to your computer and use it in GitHub Desktop.
Cross compile to Windows using Zig
# On Linux or macOS
export CC="zig cc -target x86_64-windows-gnu"
export CXX="zig c++ -target x86_64-windows-gnu"
./configure --host x86_64-windows-gnu
make
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment