Skip to content

Commit

Permalink
Rollup merge of rust-lang#122157 - dpaoliello:targetdesc, r=Nilstrieb
Browse files Browse the repository at this point in the history
Add the new description field to Target::to_json, and add descriptions for some MSVC targets

The original PR to add a `description` field to `Target` (<rust-lang#121905>) didn't add the field to `Target::to_json`, which meant that the `check_consistency` testwould fail if you tried to set a description as it wouldn't survive round-tripping via JSON: https://github.com/rust-lang/rust/actions/runs/8180997936/job/22370052535#step:27:4967

This change adds the field to `Target::to_json`, and sets some descriptions to verify that it works correctly.
  • Loading branch information
matthiaskrgr committed Mar 8, 2024
2 parents e76bd62 + d6b597b commit b9a3952
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions compiler/rustc_target/src/spec/mod.rs
Expand Up @@ -3253,6 +3253,7 @@ impl ToJson for Target {
}

target_val!(llvm_target);
target_val!(description);
d.insert("target-pointer-width".to_string(), self.pointer_width.to_string().to_json());
target_val!(arch);
target_val!(data_layout);
Expand Down
Expand Up @@ -7,7 +7,7 @@ pub fn target() -> Target {

Target {
llvm_target: "aarch64-pc-windows-msvc".into(),
description: None,
description: Some("ARM64 Windows MSVC".into()),
pointer_width: 64,
data_layout: "e-m:w-p:64:64-i32:32-i64:64-i128:128-n32:64-S128".into(),
arch: "aarch64".into(),
Expand Down
Expand Up @@ -23,7 +23,7 @@ pub fn target() -> Target {

Target {
llvm_target: "i686-pc-windows-msvc".into(),
description: None,
description: Some("32-bit MSVC (Windows 7+)".into()),
pointer_width: 32,
data_layout: "e-m:x-p:32:32-p270:32:32-p271:32:32-p272:64:64-\
i64:64-i128:128-f80:128-n8:16:32-a:0:32-S32"
Expand Down
Expand Up @@ -23,7 +23,7 @@ pub fn target() -> Target {

Target {
llvm_target: "i686-pc-windows-msvc".into(),
description: None,
description: Some("32-bit Windows 7 support".into()),
pointer_width: 32,
data_layout: "e-m:x-p:32:32-p270:32:32-p271:32:32-p272:64:64-\
i64:64-i128:128-f80:128-n8:16:32-a:0:32-S32"
Expand Down
Expand Up @@ -13,7 +13,7 @@ pub fn target() -> Target {

Target {
llvm_target: "thumbv7a-pc-windows-msvc".into(),
description: None,
description: Some("ARM32 Windows MSVC".into()),
pointer_width: 32,
data_layout: "e-m:w-p:32:32-Fi8-i64:64-v128:64:128-a:0:32-n32-S64".into(),
arch: "arm".into(),
Expand Down
Expand Up @@ -10,7 +10,7 @@ pub fn target() -> Target {

Target {
llvm_target: "x86_64-pc-windows-msvc".into(),
description: None,
description: Some("64-bit MSVC (Windows 7+)".into()),
pointer_width: 64,
data_layout:
"e-m:w-p270:32:32-p271:32:32-p272:64:64-i64:64-i128:128-f80:128-n8:16:32:64-S128".into(),
Expand Down
Expand Up @@ -9,7 +9,7 @@ pub fn target() -> Target {

Target {
llvm_target: "x86_64-win7-windows-msvc".into(),
description: None,
description: Some("64-bit Windows 7 support".into()),
pointer_width: 64,
data_layout:
"e-m:w-p270:32:32-p271:32:32-p272:64:64-i64:64-i128:128-f80:128-n8:16:32:64-S128".into(),
Expand Down

0 comments on commit b9a3952

Please sign in to comment.