Skip to content

Commit

Permalink
test: Add powerpc64-linux-(none,musl) triples to module tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexrp committed Sep 4, 2024
1 parent 40ee682 commit ee3efe8
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions test/tests.zig
Original file line number Diff line number Diff line change
Expand Up @@ -438,6 +438,30 @@ const test_targets = blk: {
// .link_libc = true,
//},

.{
.target = .{
.cpu_arch = .powerpc64,
.os_tag = .linux,
.abi = .none,
},
},
.{
.target = .{
.cpu_arch = .powerpc64,
.os_tag = .linux,
.abi = .musl,
},
.link_libc = true,
},
// Requires ELFv1 linker support.
// .{
// .target = .{
// .cpu_arch = .powerpc64,
// .os_tag = .linux,
// .abi = .gnu,
// },
// .link_libc = true,
// },
.{
.target = .{
.cpu_arch = .powerpc64le,
Expand Down

0 comments on commit ee3efe8

Please sign in to comment.