zig

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

commit d2e42fe9deca5601941d0e25167ad3d5bb05e541 (tree)
parent 71e5ee9a51807485cdcbfdc3bf56c056ad22527c
Author: Alex Rønne Petersen <alex@alexrp.com>
Date:   Sat, 11 Apr 2026 12:55:28 +0200

std.Target: default ABI to eabihf for psp

Diffstat:
Mlib/std/Target.zig | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/std/Target.zig b/lib/std/Target.zig @@ -912,6 +912,7 @@ pub const Abi = enum { .windows => .gnu, .uefi => .msvc, .@"3ds" => .eabihf, + .psp => .eabihf, .vita => .eabihf, .wasi, .emscripten => .musl, @@ -930,7 +931,6 @@ pub const Abi = enum { .tvos, .visionos, .watchos, - .psp, .ps3, .ps4, .ps5,