From 865d4d2d8c066fd72b1e81cfc81c927aeccde8db Mon Sep 17 00:00:00 2001 From: kcbanner Date: Sat, 27 May 2023 16:43:45 -0400 Subject: debug: more fixups for mips linux not having ucontext_t - increase test-std max_rss to 1.1 above the CI observed amount --- lib/std/debug.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/std/debug.zig') diff --git a/lib/std/debug.zig b/lib/std/debug.zig index 57e7883862..2a1039e748 100644 --- 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, }); -- cgit v1.2.3