mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 05:44:20 +00:00
std.c: add missing MINSIGSTKSZ for some FreeBSD targets
This commit is contained in:
parent
d5585bc650
commit
4e943fc847
1 changed files with 2 additions and 2 deletions
|
|
@ -9703,8 +9703,8 @@ pub const NSIG = switch (native_os) {
|
|||
pub const MINSIGSTKSZ = switch (native_os) {
|
||||
.macos, .ios, .tvos, .watchos, .visionos => 32768,
|
||||
.freebsd => switch (builtin.cpu.arch) {
|
||||
.x86, .x86_64 => 2048,
|
||||
.arm, .aarch64 => 4096,
|
||||
.powerpc64, .powerpc64le, .x86, .x86_64 => 2048,
|
||||
.arm, .aarch64, .riscv64 => 4096,
|
||||
else => @compileError("unsupported arch"),
|
||||
},
|
||||
.illumos => 2048,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue