zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit ee3efe8007402c496a6e589fc279e07578e8280f (tree)
parent 40ee6825170ed52ebd707262d1a88f237de54d6f
Author: Alex Rønne Petersen <alex@alexrp.com>
Date:   Thu,  5 Sep 2024 01:15:04 +0200

test: Add `powerpc64-linux-(none,musl)` triples to module tests.

Diffstat:
Mtest/tests.zig | 24++++++++++++++++++++++++
1 file changed, 24 insertions(+), 0 deletions(-)

diff --git a/test/tests.zig b/test/tests.zig @@ -440,6 +440,30 @@ const test_targets = blk: { .{ .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, .os_tag = .linux, .abi = .none,