diff --git a/library/std/build.rs b/library/std/build.rs index 0278bfcfb08df..f960aa2254e3d 100644 --- a/library/std/build.rs +++ b/library/std/build.rs @@ -113,10 +113,9 @@ fn main() { ("riscv32" | "riscv64", _) => false, // Most OSs are missing `__extendhfsf` and `__truncsfhf` (_, "linux" | "macos") => true, - // Almost all OSs besides Linux and MacOS are missing symbols until compiler-builtins can - // be updated. will get some of these, the - // next CB update should get the rest. - _ => false, + // TODO: only for testing, this line will wind up changed as part of + // . + _ => true, }; let has_reliable_f128 = match (target_arch.as_str(), target_os.as_str()) {