zig

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

commit 787a2c9d7a5fd0f6aaa10a406cda5bd2f4eb33a7 (tree)
parent 3d604248e6c2111ff3dc48057f07ec91fdbc6a9e
Author: Alex Rønne Petersen <alex@alexrp.com>
Date:   Fri, 19 Jun 2026 05:46:32 +0200

test: remove psx-mipsel from llvm_targets for now

    mq test-cases
        mq compile obj llvm_targets Debug mipsel-psx-eabi failure
    error: warning: MIPS-I support is experimental

This can be added back once this LLVM warning is removed.

Diffstat:
Mtest/llvm_targets.zig | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/test/llvm_targets.zig b/test/llvm_targets.zig @@ -154,7 +154,7 @@ const targets = [_]std.Target.Query{ .{ .cpu_arch = .mipsel, .os_tag = .linux, .abi = .musleabihf }, .{ .cpu_arch = .mipsel, .os_tag = .netbsd, .abi = .eabi }, .{ .cpu_arch = .mipsel, .os_tag = .netbsd, .abi = .eabihf }, - .{ .cpu_arch = .mipsel, .os_tag = .psx, .abi = .eabi }, + // .{ .cpu_arch = .mipsel, .os_tag = .psx, .abi = .eabi }, .{ .cpu_arch = .mipsel, .os_tag = .psp, .abi = .eabihf }, .{ .cpu_arch = .mipsel, .os_tag = .rtems, .abi = .eabi }, .{ .cpu_arch = .mipsel, .os_tag = .rtems, .abi = .eabihf },