Skip to content

Commit 2ac56db

Browse files
Rollup merge of rust-lang#129712 - randomPoison:trusty-tier-3-fix, r=saethlin
Correct trusty targets to be tier 3 The Trusty targets were added in rust-lang#129490, but in that PR I accidentally marked them as tier 2. This PR corrects the target metadata to mark them as tier 3.
2 parents ac5be35 + d8129a1 commit 2ac56db

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: compiler/rustc_target/src/spec/targets/aarch64_unknown_trusty.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ pub fn target() -> Target {
77
llvm_target: "aarch64-unknown-unknown-musl".into(),
88
metadata: crate::spec::TargetMetadata {
99
description: Some("ARM64 Trusty".into()),
10-
tier: Some(2),
10+
tier: Some(3),
1111
host_tools: Some(false),
1212
std: Some(false),
1313
},

Diff for: compiler/rustc_target/src/spec/targets/armv7_unknown_trusty.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ pub fn target() -> Target {
88
llvm_target: "armv7-unknown-unknown-gnueabi".into(),
99
metadata: crate::spec::TargetMetadata {
1010
description: Some("Armv7-A Trusty".into()),
11-
tier: Some(2),
11+
tier: Some(3),
1212
host_tools: Some(false),
1313
std: Some(false),
1414
},

0 commit comments

Comments
 (0)