| author | |
| committer | |
| log | b739fec841ced5a6b41f36847945f638254b33bb |
| tree | dbad5487d03b9a4b42ef27a8d90d42c621843a86 |
| parent | 1f2e3b39ae8ddd4ae7a969daa8c56949de81295e |
| signature |
https://github.com/ziglang/zig/issues/243101 files changed, 5 insertions(+), 0 deletions(-)
test/standalone/stack_iterator/build.zig+5| ... | ... | @@ -8,6 +8,11 @@ pub fn build(b: *std.Build) void { |
| 8 | 8 | const target = b.standardTargetOptions(.{}); |
| 9 | 9 | const optimize = b.standardOptimizeOption(.{}); |
| 10 | 10 | |
| 11 | if (target.result.cpu.arch.isRISCV() and target.result.os.tag == .linux) { | |
| 12 | // https://github.com/ziglang/zig/issues/24310 | |
| 13 | return; | |
| 14 | } | |
| 15 | ||
| 11 | 16 | // Unwinding with a frame pointer |
| 12 | 17 | // |
| 13 | 18 | // getcontext version: zig std |