Skip to content

Instantly share code, notes, and snippets.

@vinhjaxt
Last active June 17, 2023 16:47
Show Gist options
  • Select an option

  • Save vinhjaxt/a214b02cc96927a7a5b2f34951585a4c to your computer and use it in GitHub Desktop.

Select an option

Save vinhjaxt/a214b02cc96927a7a5b2f34951585a4c to your computer and use it in GitHub Desktop.
Zig Build
rem zig build-exe main.zig -O ReleaseSmall --strip --single-threaded -target x86_64-windows
rem https://ziglang.org/download/0.8.0/release-notes.html#Support-Table
rem https://ziglang.org/documentation/master/#Targets
zig targets
rem https://ziglang.org/documentation/master/#Build-Mode
set "BUILD_MODE=-Doptimize=ReleaseSafe"
zig build -Dtarget=arm-linux %BUILD_MODE%
zig build -Dtarget=aarch64-linux %BUILD_MODE%
zig build -Dtarget=x86-linux %BUILD_MODE%
zig build -Dtarget=x86_64-linux %BUILD_MODE%
zig build -Dtarget=x86-windows %BUILD_MODE%
zig build -Dtarget=x86_64-windows %BUILD_MODE%
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment