| ... | ... | @@ -739,8 +739,10 @@ const page_size_min_default: ?usize = switch (builtin.os.tag) { |
| 739 | 739 | .x86, .x86_64 => 4 << 10, |
| 740 | 740 | .thumb, .thumbeb, .arm, .armeb => 4 << 10, |
| 741 | 741 | .aarch64, .aarch64_be => 4 << 10, |
| 742 | .hppa => 4 << 10, |
| 742 | 743 | .mips, .mipsel, .mips64, .mips64el => 4 << 10, |
| 743 | 744 | .powerpc, .powerpc64, .powerpc64le, .powerpcle => 4 << 10, |
| 745 | .sh, .sheb => 4 << 10, |
| 744 | 746 | .sparc => 4 << 10, |
| 745 | 747 | .sparc64 => 8 << 10, |
| 746 | 748 | .riscv32, .riscv64 => 4 << 10, |
| ... | ... | @@ -895,8 +897,10 @@ const page_size_max_default: ?usize = switch (builtin.os.tag) { |
| 895 | 897 | .x86, .x86_64 => 4 << 10, |
| 896 | 898 | .thumb, .thumbeb, .arm, .armeb => 4 << 10, |
| 897 | 899 | .aarch64, .aarch64_be => 64 << 10, |
| 900 | .hppa => 4 << 10, |
| 898 | 901 | .mips, .mipsel, .mips64, .mips64el => 16 << 10, |
| 899 | 902 | .powerpc, .powerpc64, .powerpc64le, .powerpcle => 16 << 10, |
| 903 | .sh, .sheb => 4 << 10, |
| 900 | 904 | .sparc => 8 << 10, |
| 901 | 905 | .sparc64 => 8 << 10, |
| 902 | 906 | .riscv32, .riscv64 => 4 << 10, |