Skip to content

Commit 43e4c07

Browse files
committed
Do not merge: change fallback for testing
1 parent 0becea7 commit 43e4c07

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
@@ -113,10 +113,9 @@ fn main() {
113113
("riscv32" | "riscv64", _) => false,
114114
// Most OSs are missing `__extendhfsf` and `__truncsfhf`
115115
(_, "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,
116+
// TODO: only for testing, this line will wind up changed as part of
117+
// <https://github.com/rust-lang/rust/pull/129385>.
118+
_ => true,
120119
};
121120

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

0 commit comments

Comments
 (0)