Skip to content

Commit a8902f0

Browse files
committed
Do not merge: change fallback for testing
1 parent a99c95f commit a8902f0

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

library/std/build.rs

+3-4
Original file line numberDiff line numberDiff line change
@@ -116,10 +116,9 @@ fn main() {
116116
("riscv32" | "riscv64", _) => false,
117117
// Most OSs are missing `__extendhfsf` and `__truncsfhf`
118118
(_, "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,
119+
// TODO: only for testing, this line will wind up changed as part of
120+
// <https://github.com/rust-lang/rust/pull/129385>.
121+
_ => true,
123122
};
124123

125124
let has_reliable_f128 = match (target_arch.as_str(), target_os.as_str()) {

0 commit comments

Comments
 (0)