Rollup merge of #129712 - randomPoison:trusty-tier-3-fix, r=saethlin

Correct trusty targets to be tier 3

The Trusty targets were added in https://github.com/rust-lang/rust/pull/129490, but in that PR I accidentally marked them as tier 2. This PR corrects the target metadata to mark them as tier 3.
This commit is contained in:
Jubilee 2024-08-28 19:12:55 -07:00 committed by GitHub
commit 2ac56db8a2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@ pub fn target() -> Target {
llvm_target: "aarch64-unknown-unknown-musl".into(),
metadata: crate::spec::TargetMetadata {
description: Some("ARM64 Trusty".into()),
tier: Some(2),
tier: Some(3),
host_tools: Some(false),
std: Some(false),
},

View File

@ -8,7 +8,7 @@ pub fn target() -> Target {
llvm_target: "armv7-unknown-unknown-gnueabi".into(),
metadata: crate::spec::TargetMetadata {
description: Some("Armv7-A Trusty".into()),
tier: Some(2),
tier: Some(3),
host_tools: Some(false),
std: Some(false),
},