Skip to content

Commit 4e943fc

Browse files
committed
std.c: add missing MINSIGSTKSZ for some FreeBSD targets
1 parent d5585bc commit 4e943fc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/std/c.zig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9703,8 +9703,8 @@ pub const NSIG = switch (native_os) {
97039703
pub const MINSIGSTKSZ = switch (native_os) {
97049704
.macos, .ios, .tvos, .watchos, .visionos => 32768,
97059705
.freebsd => switch (builtin.cpu.arch) {
9706-
.x86, .x86_64 => 2048,
9707-
.arm, .aarch64 => 4096,
9706+
.powerpc64, .powerpc64le, .x86, .x86_64 => 2048,
9707+
.arm, .aarch64, .riscv64 => 4096,
97089708
else => @compileError("unsupported arch"),
97099709
},
97109710
.illumos => 2048,

0 commit comments

Comments
 (0)