Fix "std" support status of some tier 3 targets
This commit is contained in:
parent
96e51d9482
commit
76f9aa1d7e
10 changed files with 18 additions and 18 deletions
|
@ -12,8 +12,8 @@ pub(crate) fn target() -> Target {
|
|||
metadata: crate::spec::TargetMetadata {
|
||||
description: Some("PPC64LE FreeBSD".into()),
|
||||
tier: Some(3),
|
||||
host_tools: Some(false),
|
||||
std: Some(false),
|
||||
host_tools: Some(true),
|
||||
std: Some(true),
|
||||
},
|
||||
pointer_width: 64,
|
||||
data_layout: "e-m:e-Fn32-i64:64-n32:64".into(),
|
||||
|
|
|
@ -17,7 +17,7 @@ pub(crate) fn target() -> Target {
|
|||
description: Some("PowerPC FreeBSD".into()),
|
||||
tier: Some(3),
|
||||
host_tools: Some(false),
|
||||
std: Some(false),
|
||||
std: None,
|
||||
},
|
||||
pointer_width: 32,
|
||||
data_layout: "E-m:e-p:32:32-Fn32-i64:64-n32".into(),
|
||||
|
|
|
@ -9,7 +9,7 @@ pub(crate) fn target() -> Target {
|
|||
description: Some("RISC-V Linux (kernel 5.4, glibc 2.33)".into()),
|
||||
tier: Some(3),
|
||||
host_tools: Some(false),
|
||||
std: Some(false),
|
||||
std: Some(true),
|
||||
},
|
||||
pointer_width: 32,
|
||||
data_layout: "e-m:e-p:32:32-i64:64-n32-S128".into(),
|
||||
|
|
|
@ -11,7 +11,7 @@ pub(crate) fn target() -> Target {
|
|||
),
|
||||
tier: Some(3),
|
||||
host_tools: Some(false),
|
||||
std: Some(false),
|
||||
std: None,
|
||||
},
|
||||
pointer_width: 32,
|
||||
data_layout: "e-m:e-p:32:32-i64:64-n32-S128".into(),
|
||||
|
|
|
@ -9,7 +9,7 @@ pub(crate) fn target() -> Target {
|
|||
description: Some("RISC-V 64-bit Android".into()),
|
||||
tier: Some(3),
|
||||
host_tools: Some(false),
|
||||
std: Some(false),
|
||||
std: None,
|
||||
},
|
||||
pointer_width: 64,
|
||||
data_layout: "e-m:e-p:64:64-i64:64-i128:128-n32:64-S128".into(),
|
||||
|
|
|
@ -7,7 +7,7 @@ pub(crate) fn target() -> Target {
|
|||
description: Some("RISC-V FreeBSD".into()),
|
||||
tier: Some(3),
|
||||
host_tools: Some(false),
|
||||
std: Some(false),
|
||||
std: None,
|
||||
},
|
||||
pointer_width: 64,
|
||||
data_layout: "e-m:e-p:64:64-i64:64-i128:128-n32:64-S128".into(),
|
||||
|
|
|
@ -7,7 +7,7 @@ pub(crate) fn target() -> Target {
|
|||
description: Some("RISC-V Fuchsia".into()),
|
||||
tier: Some(3),
|
||||
host_tools: Some(false),
|
||||
std: Some(false),
|
||||
std: None,
|
||||
},
|
||||
pointer_width: 64,
|
||||
data_layout: "e-m:e-p:64:64-i64:64-i128:128-n32:64-S128".into(),
|
||||
|
|
|
@ -9,7 +9,7 @@ pub(crate) fn target() -> Target {
|
|||
description: Some("RISC-V Linux (kernel 4.20, musl 1.2.3)".into()),
|
||||
tier: Some(3),
|
||||
host_tools: Some(false),
|
||||
std: Some(false),
|
||||
std: Some(true),
|
||||
},
|
||||
pointer_width: 64,
|
||||
data_layout: "e-m:e-p:64:64-i64:64-i128:128-n32:64-S128".into(),
|
||||
|
|
|
@ -19,7 +19,7 @@ pub(crate) fn target() -> Target {
|
|||
description: Some("S390x Linux (kernel 3.2, musl 1.2.3)".into()),
|
||||
tier: Some(3),
|
||||
host_tools: Some(false),
|
||||
std: Some(false),
|
||||
std: Some(true),
|
||||
},
|
||||
pointer_width: 64,
|
||||
data_layout: "E-m:e-i1:8:16-i8:8:16-i64:64-f128:64-v128:64-a:8:16-n32:64".into(),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue