From 36465755cafcc01efbbc7bff2d563ad9dfc6de59 Mon Sep 17 00:00:00 2001 From: Ben Grant Date: Wed, 15 May 2024 18:55:37 -0700 Subject: [PATCH] remove dead code from build script --- build.zig | 1 - 1 file changed, 1 deletion(-) diff --git a/build.zig b/build.zig index 86a11f0..505dd99 100644 --- a/build.zig +++ b/build.zig @@ -64,7 +64,6 @@ pub fn build(b: *std.Build) void { .target = target, .optimize = optimize, }); - // bench.root_module.strip = false; bench.root_module.addImport("build_options", options_module); const bench_runner = b.addInstallBinFile(bench.getEmittedBin(), "bench"); const bench_install_step = b.step("bench", "Compile a benchmark harness");