Skip to content

Commit

Permalink
Rollup merge of #129712 - randomPoison:trusty-tier-3-fix, r=saethlin
Browse files Browse the repository at this point in the history
Correct trusty targets to be tier 3

The Trusty targets were added in #129490, but in that PR I accidentally marked them as tier 2. This PR corrects the target metadata to mark them as tier 3.
  • Loading branch information
workingjubilee committed Aug 29, 2024
2 parents ac5be35 + d8129a1 commit 2ac56db
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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),
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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),
},
Expand Down

0 comments on commit 2ac56db

Please sign in to comment.