authorgravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2025-05-18 22:06:53+02:00
committergravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2025-05-19 00:22:22+02:00
logb0c10e2262b975743932258710e3fca47113d16e
treeb0eae007fe13cec3f44b91ecca7049e99e00adc6
parente882956ef67512b52dda1bf1ccd60953dde47a4b
signaturebadge-check Signed by SSH key SHA256:7B/LJ7bpR1eX8aCXSr4mtd5M45VMPKcx9zY8e95b5QM

test: Enable x86-linux-musl with dynamic linkage in the module test matrix.

Building upstream musl for this target works now that we use hidden visibility for compiler-rt symbols.

1 files changed, 10 insertions(+), 11 deletions(-)

test/tests.zig+10-11
...@@ -296,17 +296,16 @@ const test_targets = blk: {...@@ -296,17 +296,16 @@ const test_targets = blk: {
296 },296 },
297 .link_libc = true,297 .link_libc = true,
298 },298 },
299 // https://github.com/ziglang/zig/issues/7935299 .{
300 // .{300 .target = .{
301 // .target = .{301 .cpu_arch = .x86,
302 // .cpu_arch = .x86,302 .os_tag = .linux,
303 // .os_tag = .linux,303 .abi = .musl,
304 // .abi = .musl,304 },
305 // },305 .linkage = .dynamic,
306 // .linkage = .dynamic,306 .link_libc = true,
307 // .link_libc = true,307 .extra_target = true,
308 // .extra_target = true,308 },
309 // },
310 .{309 .{
311 .target = .{310 .target = .{
312 .cpu_arch = .x86,311 .cpu_arch = .x86,