| ... | @@ -40,7 +40,13 @@ pub const want_windows_v2u64_abi = builtin.os.tag == .windows and builtin.cpu.ar | ... | @@ -40,7 +40,13 @@ pub const want_windows_v2u64_abi = builtin.os.tag == .windows and builtin.cpu.ar |
| 40 | /// x86_64-windows-msvc => true | 40 | /// x86_64-windows-msvc => true |
| 41 | /// any-macos-any => false | 41 | /// any-macos-any => false |
| 42 | pub const gnu_f16_abi = switch (builtin.cpu.arch) { | 42 | pub const gnu_f16_abi = switch (builtin.cpu.arch) { |
| 43 | .wasm32, .wasm64, .riscv64, .riscv32 => false, | 43 | .wasm32, |
| | 44 | .wasm64, |
| | 45 | .riscv64, |
| | 46 | .riscv32, |
| | 47 | .i386, |
| | 48 | .x86_64, |
| | 49 | => false, |
| 44 | | 50 | |
| 45 | .arm, .armeb, .thumb, .thumbeb => switch (builtin.abi) { | 51 | .arm, .armeb, .thumb, .thumbeb => switch (builtin.abi) { |
| 46 | .eabi, .eabihf => false, | 52 | .eabi, .eabihf => false, |