summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTrevor Gross <t.gross35@gmail.com>2024-09-30 19:18:50 -0400
committerGitHub <noreply@github.com>2024-09-30 19:18:50 -0400
commit40d0ada90911b3cdfb3b55b19b08af60822511b7 (patch)
treeb693dce110638efaf882343d79f4f51059cf4aae
parent2fe41869c9eea690d3bd94e3de094282ccb7645c (diff)
parent2511cc1d153323712906ac318519220920920fba (diff)
Rollup merge of #130961 - tgross35:f16-x86-apple, r=thomcc
Enable `f16` tests on x86 Apple platforms These were disabled because Apple uses a special ABI for `f16`. `compiler-builtins` merged a fix for this in [1], which has since propagated to rust-lang/rust. Enable tests since there should be no remaining issues on these platforms. [1]: https://github.com/rust-lang/compiler-builtins/pull/675 try-job: x86_64-apple-1 try-job: x86_64-apple-2
-rw-r--r--library/std/build.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/library/std/build.rs b/library/std/build.rs
index c5d0af469a8..5da470c6462 100644
--- a/library/std/build.rs
+++ b/library/std/build.rs
@@ -102,9 +102,6 @@ fn main() {
("arm64ec", _) => false,
// MinGW ABI bugs <https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115054>
("x86_64", "windows") => false,
- // Apple has a special ABI for `f16` that we do not yet support
- // FIXME(builtins): fixed by <https://github.com/rust-lang/compiler-builtins/pull/675>
- ("x86" | "x86_64", _) if target_vendor == "apple" => false,
// Infinite recursion <https://github.com/llvm/llvm-project/issues/97981>
("csky", _) => false,
("hexagon", _) => false,