diff options
| -rw-r--r-- | library/std/build.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/library/std/build.rs b/library/std/build.rs index eaffad5b131..c542ba81eed 100644 --- a/library/std/build.rs +++ b/library/std/build.rs @@ -100,6 +100,8 @@ fn main() { ("x86" | "x86_64", _) => false, // Missing `__gnu_h2f_ieee` and `__gnu_f2h_ieee` ("powerpc" | "powerpc64", _) => false, + // Missing `__gnu_h2f_ieee` and `__gnu_f2h_ieee` + ("mips" | "mips32r6" | "mips64" | "mips64r6", _) => false, // Missing `__extendhfsf` and `__truncsfhf` ("riscv32" | "riscv64", _) => false, // Most OSs are missing `__extendhfsf` and `__truncsfhf` |
