| ... | @@ -736,6 +736,7 @@ const page_size_min_default: ?usize = switch (builtin.os.tag) { | ... | @@ -736,6 +736,7 @@ const page_size_min_default: ?usize = switch (builtin.os.tag) { |
| 736 | }, | 736 | }, |
| 737 | .netbsd => switch (builtin.cpu.arch) { | 737 | .netbsd => switch (builtin.cpu.arch) { |
| 738 | // NetBSD/sys/arch/* | 738 | // NetBSD/sys/arch/* |
| | 739 | .alpha => 8 << 10, |
| 739 | .x86, .x86_64 => 4 << 10, | 740 | .x86, .x86_64 => 4 << 10, |
| 740 | .thumb, .thumbeb, .arm, .armeb => 4 << 10, | 741 | .thumb, .thumbeb, .arm, .armeb => 4 << 10, |
| 741 | .aarch64, .aarch64_be => 4 << 10, | 742 | .aarch64, .aarch64_be => 4 << 10, |
| ... | @@ -894,6 +895,7 @@ const page_size_max_default: ?usize = switch (builtin.os.tag) { | ... | @@ -894,6 +895,7 @@ const page_size_max_default: ?usize = switch (builtin.os.tag) { |
| 894 | }, | 895 | }, |
| 895 | .netbsd => switch (builtin.cpu.arch) { | 896 | .netbsd => switch (builtin.cpu.arch) { |
| 896 | // NetBSD/sys/arch/* | 897 | // NetBSD/sys/arch/* |
| | 898 | .alpha => 8 << 10, |
| 897 | .x86, .x86_64 => 4 << 10, | 899 | .x86, .x86_64 => 4 << 10, |
| 898 | .thumb, .thumbeb, .arm, .armeb => 4 << 10, | 900 | .thumb, .thumbeb, .arm, .armeb => 4 << 10, |
| 899 | .aarch64, .aarch64_be => 64 << 10, | 901 | .aarch64, .aarch64_be => 64 << 10, |