Skip to content

Commit

Permalink
default to ReleaseSafe, not ReleaseSmall
Browse files Browse the repository at this point in the history
  • Loading branch information
milanaleksic committed Jul 28, 2024
1 parent 27bb547 commit 85f3128
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.zig
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ pub fn build(b: *std.Build) void {
.name = "local-install",
.root_source_file = b.path("src/main.zig"),
.target = target,
.optimize = .ReleaseSmall,
.optimize = .ReleaseSafe,
});
local_install.root_module.addImport("tomlz", mod);
const local_install_step = b.step("local-install", "Installs optimal binary locally");
Expand Down

0 comments on commit 85f3128

Please sign in to comment.