feature. See also
. The project being documented here (as the example) is the Zig library itself.
linux.MINSIGSTKSZ
pub const MINSIGSTKSZ = switch (native_arch)
File
Code
pub const MINSIGSTKSZ = switch (native_arch) {
.arc,
.arceb,
.arm,
.armeb,
.csky,
.hexagon,
.m68k,
.mips,
.mipsel,
.mips64,
.mips64el,
.microblaze,
.microblazeel,
.or1k,
.powerpc,
.powerpcle,
.riscv32,
.riscv64,
.s390x,
.sh,
.sheb,
.thumb,
.thumbeb,
.x86,
.x86_64,
.xtensa,
.xtensaeb,
=> 2048,
.loongarch32,
.loongarch64,
.sparc,
.sparc64,
=> 4096,
.aarch64,
.aarch64_be,
=> 5120,
.powerpc64,
.powerpc64le,
=> 8192,
else => @compileError("MINSIGSTKSZ not defined for this architecture"),
}