Skip to content

Commit

Permalink
Do not merge: change fallback for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
tgross35 committed Sep 27, 2024
1 parent a99c95f commit 83d56df
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions library/std/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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. <https://github.com/rust-lang/rust/pull/125016> 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
// <https://github.com/rust-lang/rust/pull/129385>.
_ => true,
};

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

0 comments on commit 83d56df

Please sign in to comment.