Last active
June 17, 2023 16:47
-
-
Save vinhjaxt/a214b02cc96927a7a5b2f34951585a4c to your computer and use it in GitHub Desktop.
Zig Build
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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