about summary refs log tree commit diff
diff options
context:
space:
mode:
authorCaleb Zulawski <caleb.zulawski@gmail.com>2023-11-19 23:12:50 -0500
committerCaleb Zulawski <caleb.zulawski@gmail.com>2023-11-19 23:12:50 -0500
commit6b4465db50a39f760a8f32ff646441dba4433b67 (patch)
tree251ab1c874cbae2327fc91d346306922ae589070
parent290fc68f2d27b67da5fd176965c42c01ea4c57fe (diff)
downloadrust-6b4465db50a39f760a8f32ff646441dba4433b67.tar.gz
rust-6b4465db50a39f760a8f32ff646441dba4433b67.zip
Remove i686-apple-darwin cross-testing
-rw-r--r--src/bootstrap/src/core/build_steps/test.rs2
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 254fbc72a8c..fa57533599f 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)]