mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 05:44:20 +00:00
test: Disable stack_iterator test on riscv64-linux
https://github.com/ziglang/zig/issues/24310
This commit is contained in:
parent
1f2e3b39ae
commit
b739fec841
1 changed files with 5 additions and 0 deletions
|
|
@ -8,6 +8,11 @@ pub fn build(b: *std.Build) void {
|
|||
const target = b.standardTargetOptions(.{});
|
||||
const optimize = b.standardOptimizeOption(.{});
|
||||
|
||||
if (target.result.cpu.arch.isRISCV() and target.result.os.tag == .linux) {
|
||||
// https://github.com/ziglang/zig/issues/24310
|
||||
return;
|
||||
}
|
||||
|
||||
// Unwinding with a frame pointer
|
||||
//
|
||||
// getcontext version: zig std
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue