Build Mode

Zig has four build modes:

To add standard build options to a build.zig file:

build.zig

  1. const Builder = @import("std").build.Builder;
  2. pub fn build(b: *Builder) void {
  3. const exe = b.addExecutable("example", "example.zig");
  4. exe.setBuildMode(b.standardReleaseOptions());
  5. b.default_step.dependOn(&exe.step);
  6. }

This causes these options to be available:

-Drelease-safe=[bool]

Optimizations on and safety on

-Drelease-fast=[bool]

Optimizations on and safety off

-Drelease-small=[bool]

Size optimizations on and safety off

Debug

Shell

  1. $ zig build-exe example.zig
  • Fast compilation speed
  • Safety checks enabled
  • Slow runtime performance
  • Large binary size
  • No reproducible build requirement

ReleaseFast

Shell

  1. $ zig build-exe example.zig -O ReleaseFast
  • Fast runtime performance
  • Safety checks disabled
  • Slow compilation speed
  • Large binary size
  • Reproducible build

ReleaseSafe

Shell

  1. $ zig build-exe example.zig -O ReleaseSafe
  • Medium runtime performance
  • Safety checks enabled
  • Slow compilation speed
  • Large binary size
  • Reproducible build

ReleaseSmall

Shell

  1. $ zig build-exe example.zig -O ReleaseSmall
  • Medium runtime performance
  • Safety checks disabled
  • Slow compilation speed
  • Small binary size
  • Reproducible build

See also: