Skip to content

Commit c7a17dd

Browse files
committed
fix(zig/zzz): omit frame pointer
1 parent e00de6e commit c7a17dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frameworks/Zig/zzz/build.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ pub fn build(b: *std.Build) void {
1616
.optimize = optimize,
1717
.root_source_file = root_source_file,
1818
.strip = true,
19-
.omit_frame_pointer = false,
19+
.omit_frame_pointer = true,
2020
});
2121
exe.root_module.addImport("zzz", zzz.module("zzz"));
2222
b.installArtifact(exe);

0 commit comments

Comments
 (0)