zig

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

commit 6def6beacd4b903ca5ebd394b2e2bd508e4364a0 (tree)
parent 959801030395204a5ce0e2dbcc514e6729899e94
Author: Alex Rønne Petersen <alex@alexrp.com>
Date:   Sun,  8 Mar 2026 19:23:37 +0100

std.zon.parse: disable `std.zon parse float` on 32-bit x86 in general

https://github.com/ziglang/zig/issues/23922

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

diff --git a/lib/std/zon/parse.zig b/lib/std/zon/parse.zig @@ -2795,7 +2795,7 @@ test "std.zon negative char" { } test "std.zon parse float" { - if (builtin.cpu.arch == .x86 and builtin.abi == .musl and builtin.link_mode == .dynamic) return error.SkipZigTest; + if (builtin.cpu.arch == .x86) return error.SkipZigTest; const gpa = std.testing.allocator;