diff options
| author | Nilstrieb <48135649+Nilstrieb@users.noreply.github.com> | 2023-11-21 14:36:14 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-11-21 14:36:14 +0100 |
| commit | 61e06fe4465e7cdd3977c7e106cf676999e1914c (patch) | |
| tree | 53e58fa762785eb45e1b796c12ebc7cebd735147 | |
| parent | 4bb3ae39b7284b1f0599b2c4cb84e52324c40052 (diff) | |
| parent | 6b4465db50a39f760a8f32ff646441dba4433b67 (diff) | |
| download | rust-61e06fe4465e7cdd3977c7e106cf676999e1914c.tar.gz rust-61e06fe4465e7cdd3977c7e106cf676999e1914c.zip | |
Rollup merge of #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, #112753). On an up-to-date Intel Mac, `x.py test --bless` fails. r? ``@rust-lang/bootstrap``
| -rw-r--r-- | src/bootstrap/src/core/build_steps/test.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bootstrap/src/core/build_steps/test.rs b/src/bootstrap/src/core/build_steps/test.rs index 8d4c58345f7..7908a3850c5 100644 --- a/src/bootstrap/src/core/build_steps/test.rs +++ b/src/bootstrap/src/core/build_steps/test.rs @@ -49,9 +49,9 @@ const MIR_OPT_BLESS_TARGET_MAPPING: &[(&str, &str)] = &[ ("i686-unknown-linux-musl", "x86_64-unknown-linux-musl"), ("i686-pc-windows-msvc", "x86_64-pc-windows-msvc"), ("i686-pc-windows-gnu", "x86_64-pc-windows-gnu"), - ("i686-apple-darwin", "x86_64-apple-darwin"), // ARM Macs don't have a corresponding 32-bit target that they can (easily) // build for, so there is no entry for "aarch64-apple-darwin" here. + // Likewise, i686 for macOS is no longer possible to build. ]; #[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)] |
