From 8635c18e4091bd3034121ca98439bf40bce72324 Mon Sep 17 00:00:00 2001 From: Luuk de Gram Date: Tue, 11 Oct 2022 21:27:09 +0200 Subject: [PATCH] test/link: don't strip producers section for wasm When testing the Wasm linker for the producers section we do not ever want to strip the binary as this will remove the producers section in release-small. This fixes the CI errors by d086b371f0e21e5029e1b0d05838b87502eb63e6 --- test/link/wasm/producers/build.zig | 1 + 1 file changed, 1 insertion(+) diff --git a/test/link/wasm/producers/build.zig b/test/link/wasm/producers/build.zig index 9e8d65c48f..0f29c68968 100644 --- a/test/link/wasm/producers/build.zig +++ b/test/link/wasm/producers/build.zig @@ -14,6 +14,7 @@ pub fn build(b: *Builder) void { lib.use_llvm = false; lib.use_stage1 = false; lib.use_lld = false; + lib.strip = false; lib.install(); const zig_version = builtin.zig_version;