Do not strip debug builds

This commit is contained in:
Frank Denis
2026-04-08 10:09:15 +02:00
parent dc059149dc
commit 5cc1bbafde
+1 -1
View File
@@ -331,7 +331,7 @@ pub fn build(b: *std.Build) !void {
.root_module = b.createModule(.{
.target = target,
.optimize = optimize,
.strip = true,
.strip = optimize != .Debug,
.link_libc = true,
}),
});