mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-14 02:49:40 +00:00
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:
commit
2ac56db8a2
@ -7,7 +7,7 @@ pub fn target() -> Target {
|
|||||||
llvm_target: "aarch64-unknown-unknown-musl".into(),
|
llvm_target: "aarch64-unknown-unknown-musl".into(),
|
||||||
metadata: crate::spec::TargetMetadata {
|
metadata: crate::spec::TargetMetadata {
|
||||||
description: Some("ARM64 Trusty".into()),
|
description: Some("ARM64 Trusty".into()),
|
||||||
tier: Some(2),
|
tier: Some(3),
|
||||||
host_tools: Some(false),
|
host_tools: Some(false),
|
||||||
std: Some(false),
|
std: Some(false),
|
||||||
},
|
},
|
||||||
|
@ -8,7 +8,7 @@ pub fn target() -> Target {
|
|||||||
llvm_target: "armv7-unknown-unknown-gnueabi".into(),
|
llvm_target: "armv7-unknown-unknown-gnueabi".into(),
|
||||||
metadata: crate::spec::TargetMetadata {
|
metadata: crate::spec::TargetMetadata {
|
||||||
description: Some("Armv7-A Trusty".into()),
|
description: Some("Armv7-A Trusty".into()),
|
||||||
tier: Some(2),
|
tier: Some(3),
|
||||||
host_tools: Some(false),
|
host_tools: Some(false),
|
||||||
std: Some(false),
|
std: Some(false),
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user