mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 13:54:21 +00:00
std.debug: disable stack traces on loongarch
Observed to ~randomly crash during FP-based unwinding. The path forward here will be DWARF-based unwinding.
This commit is contained in:
parent
d51d18c986
commit
d8d0a3e5c7
1 changed files with 2 additions and 0 deletions
|
|
@ -169,6 +169,8 @@ pub const runtime_safety = switch (builtin.mode) {
|
|||
pub const sys_can_stack_trace = switch (builtin.cpu.arch) {
|
||||
// Observed to go into an infinite loop.
|
||||
// TODO: Make this work.
|
||||
.loongarch32,
|
||||
.loongarch64,
|
||||
.mips,
|
||||
.mipsel,
|
||||
.mips64,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue