zig

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

commit 865d4d2d8c066fd72b1e81cfc81c927aeccde8db (tree)
parent 5ebca4392e3d3e616607c00785d67c4ae31330cb
Author: kcbanner <kcbanner@gmail.com>
Date:   Sat, 27 May 2023 16:43:45 -0400

debug: more fixups for mips linux not having ucontext_t

- increase test-std max_rss to 1.1 above the CI observed amount

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

diff --git a/lib/std/debug.zig b/lib/std/debug.zig @@ -423,7 +423,7 @@ pub const StackIterator = struct { dwarf_context: if (supports_context) DW.UnwindContext else void = undefined, const supports_context = @hasDecl(os.system, "ucontext_t") and (builtin.os.tag != .linux or switch (builtin.cpu.arch) { - .mips, .riscv64 => false, + .mips, .mipsel, .mips64, .mips64el, .riscv64 => false, else => true, });