diff options
| author | Evelyn Harthbrooke <evelynharthbrooke@gmail.com> | 2024-08-09 16:59:36 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-09 16:59:36 -0600 |
| commit | 1c02e2b5f17fa9f093bc9c46b54c993d52040e40 (patch) | |
| tree | f81c6a27108efac1553afb2723a2e2dbde88f305 | |
| parent | 04d9b08c85646acbd50f0081c5d7150a3b2cb2b0 (diff) | |
| download | rust-1c02e2b5f17fa9f093bc9c46b54c993d52040e40.tar.gz rust-1c02e2b5f17fa9f093bc9c46b54c993d52040e40.zip | |
fix incorrect value
| -rw-r--r-- | compiler/rustc_target/src/spec/targets/aarch64_apple_darwin.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_target/src/spec/targets/aarch64_apple_darwin.rs b/compiler/rustc_target/src/spec/targets/aarch64_apple_darwin.rs index f37781c3f63..65f2a1e3069 100644 --- a/compiler/rustc_target/src/spec/targets/aarch64_apple_darwin.rs +++ b/compiler/rustc_target/src/spec/targets/aarch64_apple_darwin.rs @@ -17,7 +17,7 @@ pub fn target() -> Target { llvm_target: macos_llvm_target(arch).into(), metadata: crate::spec::TargetMetadata { description: Some("ARM64 macOS (11.0+, Big Sur+)".into()), - tier: Some(2), + tier: Some(1), host_tools: Some(true), std: Some(true), }, |
