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