From b0c10e2262b975743932258710e3fca47113d16e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20R=C3=B8nne=20Petersen?= Date: Sun, 18 May 2025 22:06:53 +0200 Subject: [PATCH] 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. --- test/tests.zig | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/test/tests.zig b/test/tests.zig index 39c898cbad020cdcf8d91ec6f8d6eca3914b6f5d..04c89444df9cd49a5c00b33bef970dd4ab7323d5 100644 --- a/test/tests.zig +++ b/test/tests.zig @@ -296,17 +296,16 @@ const test_targets = blk: { }, .link_libc = true, }, - // https://github.com/ziglang/zig/issues/7935 - // .{ - // .target = .{ - // .cpu_arch = .x86, - // .os_tag = .linux, - // .abi = .musl, - // }, - // .linkage = .dynamic, - // .link_libc = true, - // .extra_target = true, - // }, + .{ + .target = .{ + .cpu_arch = .x86, + .os_tag = .linux, + .abi = .musl, + }, + .linkage = .dynamic, + .link_libc = true, + .extra_target = true, + }, .{ .target = .{ .cpu_arch = .x86, -- 2.54.0