authorgravatar for luuk@degram.devLuuk de Gram <luuk@degram.dev> 2022-10-11 21:27:09+02:00
committergravatar for luuk@degram.devLuuk de Gram <luuk@degram.dev> 2022-10-11 21:27:09+02:00
log8635c18e4091bd3034121ca98439bf40bce72324
tree54b89b1fda71136a108112528fd721329493fc74
parent01b9fa2c2574bd02937ce40525e94026c3acd551
signaturelock-open Commit is signed but in an unrecognized format.

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

1 files changed, 1 insertions(+), 0 deletions(-)

test/link/wasm/producers/build.zig+1
......@@ -14,6 +14,7 @@ pub fn build(b: *Builder) void {
1414 lib.use_llvm = false;
1515 lib.use_stage1 = false;
1616 lib.use_lld = false;
17 lib.strip = false;
1718 lib.install();
1819
1920 const zig_version = builtin.zig_version;