Skip to content

Commit b0c10e2

Browse files
committed
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 parent e882956 commit b0c10e2

File tree

1 file changed

+10
-11
lines changed

1 file changed

+10
-11
lines changed

test/tests.zig

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -296,17 +296,16 @@ const test_targets = blk: {
296296
},
297297
.link_libc = true,
298298
},
299-
// https://github.com/ziglang/zig/issues/7935
300-
// .{
301-
// .target = .{
302-
// .cpu_arch = .x86,
303-
// .os_tag = .linux,
304-
// .abi = .musl,
305-
// },
306-
// .linkage = .dynamic,
307-
// .link_libc = true,
308-
// .extra_target = true,
309-
// },
299+
.{
300+
.target = .{
301+
.cpu_arch = .x86,
302+
.os_tag = .linux,
303+
.abi = .musl,
304+
},
305+
.linkage = .dynamic,
306+
.link_libc = true,
307+
.extra_target = true,
308+
},
310309
.{
311310
.target = .{
312311
.cpu_arch = .x86,

0 commit comments

Comments
 (0)