debug: more fixups for mips linux not having ucontext_t

- increase test-std max_rss to 1.1 above the CI observed amount
This commit is contained in:
kcbanner 2023-05-27 16:43:45 -04:00
parent 5ebca4392e
commit 865d4d2d8c

View File

@ -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,
});