Fix tier level for 5 thumb bare-metal ARM targets

This commit is contained in:
cezarbbb
2026-04-24 15:52:21 +08:00
parent d493b7c5ac
commit 27e12b89b7
5 changed files with 5 additions and 5 deletions
@@ -7,7 +7,7 @@ pub(crate) fn target() -> Target {
llvm_target: "thumbv7a-none-eabi".into(),
metadata: TargetMetadata {
description: Some("Thumb-mode Bare Armv7-A".into()),
tier: Some(2),
tier: Some(3),
host_tools: Some(false),
std: Some(false),
},
@@ -7,7 +7,7 @@ pub(crate) fn target() -> Target {
llvm_target: "thumbv7a-none-eabihf".into(),
metadata: TargetMetadata {
description: Some("Thumb-mode Bare Armv7-A, hardfloat".into()),
tier: Some(2),
tier: Some(3),
host_tools: Some(false),
std: Some(false),
},
@@ -7,7 +7,7 @@ pub(crate) fn target() -> Target {
llvm_target: "thumbv7r-none-eabi".into(),
metadata: TargetMetadata {
description: Some("Thumb-mode Bare Armv7-R".into()),
tier: Some(2),
tier: Some(3),
host_tools: Some(false),
std: Some(false),
},
@@ -7,7 +7,7 @@ pub(crate) fn target() -> Target {
llvm_target: "thumbv7r-none-eabihf".into(),
metadata: TargetMetadata {
description: Some("Thumb-mode Bare Armv7-R, hardfloat".into()),
tier: Some(2),
tier: Some(3),
host_tools: Some(false),
std: Some(false),
},
@@ -7,7 +7,7 @@ pub(crate) fn target() -> Target {
llvm_target: "thumbv8r-none-eabihf".into(),
metadata: TargetMetadata {
description: Some("Thumb-mode Bare Armv8-R, hardfloat".into()),
tier: Some(2),
tier: Some(3),
host_tools: Some(false),
std: Some(false),
},