authorgravatar for kcbanner@gmail.comCasey Banner <kcbanner@gmail.com> 2023-05-27 16:43:45-04:00
committergravatar for kcbanner@gmail.comCasey Banner <kcbanner@gmail.com> 2023-07-20 22:58:13-04:00
log865d4d2d8c066fd72b1e81cfc81c927aeccde8db
tree9682bb9c35c0c494dcab3e91fad8c844db5ca4bb
parent5ebca4392e3d3e616607c00785d67c4ae31330cb

debug: more fixups for mips linux not having ucontext_t

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

1 files changed, 1 insertions(+), 1 deletions(-)

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