fix typo for freebsd arm64 MINSIGSTKSZ

Fixes #4878
This commit is contained in:
Laytan Laats
2025-03-21 23:52:52 +01:00
parent 73fd564634
commit cf0f73e0cf
+1 -1
View File
@@ -565,7 +565,7 @@ when ODIN_OS == .Darwin {
SS_ONSTACK :: 0x0001
SS_DISABLE :: 0x0004
when ODIN_ARCH == .amd64 || ODIN_ARCH == .arm32 {
when ODIN_ARCH == .arm64 || ODIN_ARCH == .arm32 {
MINSIGSTKSZ :: 1024 * 4
} else when ODIN_ARCH == .amd64 || ODIN_ARCH == .i386 {
MINSIGSTKSZ :: 512 * 4