Do not strip debug builds

This commit is contained in:
Frank Denis
2026-04-08 12:06:28 +02:00
parent 3eafe0ac91
commit caeea3fc0a
+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,
}),
});