about summary refs log tree commit diff
path: root/compiler/rustc_target/src/spec
diff options
context:
space:
mode:
authorJacob Pratt <jacob@jhpratt.dev>2025-08-20 00:45:55 -0400
committerGitHub <noreply@github.com>2025-08-20 00:45:55 -0400
commit7b7ad4d4df28cd36def036f7b4fc9b20d2e8c7b1 (patch)
treee24837fabb3e309ff3064b85da648a3d7ee7a84b /compiler/rustc_target/src/spec
parent5fa33047a23934f638b635007616ad3a3170b9eb (diff)
parentc574c91e5739519b2fd3fdb5f07fa6e102705703 (diff)
downloadrust-7b7ad4d4df28cd36def036f7b4fc9b20d2e8c7b1.tar.gz
rust-7b7ad4d4df28cd36def036f7b4fc9b20d2e8c7b1.zip
Rollup merge of #145252 - shepmaster:demote-x86_64-apple-darwin-to-tier-2, r=Kobzol,madsmtm
Demote x86_64-apple-darwin to Tier 2 with host tools

Switch to only using aarch64 runners (implying we are now cross-compiling) and stop running tests. In the future, we could enable (some?) tests via Rosetta 2.

This implements the decision from https://github.com/rust-lang/rfcs/pull/3841.
Diffstat (limited to 'compiler/rustc_target/src/spec')
-rw-r--r--compiler/rustc_target/src/spec/targets/x86_64_apple_darwin.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_target/src/spec/targets/x86_64_apple_darwin.rs b/compiler/rustc_target/src/spec/targets/x86_64_apple_darwin.rs
index 53e2cb469ee..8892c50d844 100644
--- a/compiler/rustc_target/src/spec/targets/x86_64_apple_darwin.rs
+++ b/compiler/rustc_target/src/spec/targets/x86_64_apple_darwin.rs
@@ -7,7 +7,7 @@ pub(crate) fn target() -> Target {
         llvm_target,
         metadata: TargetMetadata {
             description: Some("x86_64 Apple macOS (10.12+, Sierra+)".into()),
-            tier: Some(1),
+            tier: Some(2),
             host_tools: Some(true),
             std: Some(true),
         },