Cross-Compilation
Zig is famous for its cross-compilation capabilities. You can compile for any OS/Arch from any OS/Arch.
Example:
zig build-exe main.zig -target x86_64-windows (on Linux)
This works because Zig bundles the necessary libc headers and compilers for all supported targets.