We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0becea7 commit 43e4c07Copy full SHA for 43e4c07
library/std/build.rs
@@ -113,10 +113,9 @@ fn main() {
113
("riscv32" | "riscv64", _) => false,
114
// Most OSs are missing `__extendhfsf` and `__truncsfhf`
115
(_, "linux" | "macos") => true,
116
- // Almost all OSs besides Linux and MacOS are missing symbols until compiler-builtins can
117
- // be updated. <https://github.com/rust-lang/rust/pull/125016> will get some of these, the
118
- // next CB update should get the rest.
119
- _ => false,
+ // TODO: only for testing, this line will wind up changed as part of
+ // <https://github.com/rust-lang/rust/pull/129385>.
+ _ => true,
120
};
121
122
let has_reliable_f128 = match (target_arch.as_str(), target_os.as_str()) {
0 commit comments