commit dd7daaeae78b52f9355f0442629ff0920695896f
parent e2de3bdcbb0eaff83d2b04b8abe37691b6d11e30
Author: Sylvia Ivory <git@sivory.net>
Date: Wed, 14 Jan 2026 22:27:10 -0800
Use debug on fake-pi
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/build.zig b/build.zig
@@ -11,7 +11,7 @@ fn add_exe_fake_pi(exe_name: []const u8, path: std.Build.LazyPath, b: *std.Build
const fake_pi = b.createModule(.{
.root_source_file = b.path("fake-pi/main.zig"),
.target = b.graph.host,
- .optimize = .ReleaseSafe,
+ .optimize = .Debug,
});
fake_pi.addImport("pi", pi);