diff --git a/library/std/build.rs b/library/std/build.rs index e727007cacde..b1b8bf8af7fe 100644 --- a/library/std/build.rs +++ b/library/std/build.rs @@ -116,10 +116,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()) {