diff options
| -rw-r--r-- | library/std/build.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/build.rs b/library/std/build.rs index 55388648a14..eaffad5b131 100644 --- a/library/std/build.rs +++ b/library/std/build.rs @@ -99,7 +99,7 @@ fn main() { // the compiler-builtins update. <https://github.com/rust-lang/rust/issues/123885> ("x86" | "x86_64", _) => false, // Missing `__gnu_h2f_ieee` and `__gnu_f2h_ieee` - ("powerpc" | "powerpc64" | "powerpc64le", _) => false, + ("powerpc" | "powerpc64", _) => false, // Missing `__extendhfsf` and `__truncsfhf` ("riscv32" | "riscv64", _) => false, // Most OSs are missing `__extendhfsf` and `__truncsfhf` |
