authorgravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2024-08-16 11:07:18+02:00
committergravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2024-08-18 07:27:23+02:00
log4320611e6dfecad9819281fb945ab2bfe5e182bd
tree00794efb0f8e81f96145085b56b735a02f6ae22f
parent812a444d55e01b155a675aa70688aadcc9914387

std.debug: Also disable stack traces on mips64.


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

lib/std/debug.zig+2
...@@ -56,6 +56,8 @@ pub const sys_can_stack_trace = switch (builtin.cpu.arch) {...@@ -56,6 +56,8 @@ pub const sys_can_stack_trace = switch (builtin.cpu.arch) {
56 // TODO: Make this work.56 // TODO: Make this work.
57 .mips,57 .mips,
58 .mipsel,58 .mipsel,
59 .mips64,
60 .mips64el,
59 => false,61 => false,
6062
61 // `@returnAddress()` in LLVM 10 gives63 // `@returnAddress()` in LLVM 10 gives