Commit 865d4d2d8c

kcbanner <kcbanner@gmail.com>
2023-05-27 22:43:45
debug: more fixups for mips linux not having ucontext_t
- increase test-std max_rss to 1.1 above the CI observed amount
1 parent 5ebca43
Changed files (1)
lib
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,
     });