Skip to content

Commit c4fc7ff

Browse files
authored
Unrolled build for rust-lang#118083
Rollup merge of rust-lang#118083 - calebzulawski:remove-i686-apple-darwin, r=albertlarsan68 Remove i686-apple-darwin cross-testing The Xcode SDK no longer ships with 32-bit Intel (i686-apple-darwin) support as of [Xcode 14](https://developer.apple.com/news/upcoming-requirements/?id=06062022a) (related, rust-lang#112753). On an up-to-date Intel Mac, `x.py test --bless` fails. r? ``@rust-lang/bootstrap``
2 parents e24e5af + 6b4465d commit c4fc7ff

File tree

1 file changed

+1
-1
lines changed
  • src/bootstrap/src/core/build_steps

1 file changed

+1
-1
lines changed

src/bootstrap/src/core/build_steps/test.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,9 @@ const MIR_OPT_BLESS_TARGET_MAPPING: &[(&str, &str)] = &[
4949
("i686-unknown-linux-musl", "x86_64-unknown-linux-musl"),
5050
("i686-pc-windows-msvc", "x86_64-pc-windows-msvc"),
5151
("i686-pc-windows-gnu", "x86_64-pc-windows-gnu"),
52-
("i686-apple-darwin", "x86_64-apple-darwin"),
5352
// ARM Macs don't have a corresponding 32-bit target that they can (easily)
5453
// build for, so there is no entry for "aarch64-apple-darwin" here.
54+
// Likewise, i686 for macOS is no longer possible to build.
5555
];
5656

5757
#[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]

0 commit comments

Comments
 (0)