From 135d7ef047c18352475bebf3fcced454780b5d74 Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Thu, 16 Feb 2023 22:00:36 +0100 Subject: [PATCH] Remove redundant strip --- build.zig | 1 - 1 file changed, 1 deletion(-) diff --git a/build.zig b/build.zig index 91c1eef5..55d47354 100644 --- a/build.zig +++ b/build.zig @@ -225,7 +225,6 @@ pub fn build(b: *std.build.Builder) !void { exe.addIncludePath("test/quirks"); const full_path = try fmt.allocPrint(allocator, "{s}/{s}", .{ test_path, entry.path }); exe.addCSourceFiles(&.{full_path}, &.{}); - exe.strip = true; if (enable_benchmarks) { exe.defineCMacro("BENCHMARKS", "1");