| ... | @@ -74,7 +74,7 @@ const tls_variant = switch (native_arch) { | ... | @@ -74,7 +74,7 @@ const tls_variant = switch (native_arch) { |
| 74 | const tls_tcb_size = switch (native_arch) { | 74 | const tls_tcb_size = switch (native_arch) { |
| 75 | // ARM EABI mandates enough space for two pointers: the first one points to | 75 | // ARM EABI mandates enough space for two pointers: the first one points to |
| 76 | // the DTV while the second one is unspecified but reserved | 76 | // the DTV while the second one is unspecified but reserved |
| 77 | .arm, .armeb, .thumb, .aarch64, .aarch64_be => 2 * @sizeOf(usize), | 77 | .arm, .armeb, .thumb, .thumbeb, .aarch64, .aarch64_be => 2 * @sizeOf(usize), |
| 78 | // One pointer-sized word that points either to the DTV or the TCB itself | 78 | // One pointer-sized word that points either to the DTV or the TCB itself |
| 79 | else => @sizeOf(usize), | 79 | else => @sizeOf(usize), |
| 80 | }; | 80 | }; |