Rollup merge of #115141 - ChrisDenton:windows-support, r=wesleywiser
Update Windows platform support This should not be merged until Rust 1.76 but I'm told this may need an fcp in addition to [MCP 651](https://github.com/rust-lang/compiler-team/issues/651). cc ```@rust-lang/compiler``` ```@rust-lang/release```
This commit is contained in:
commit
60ab300d47
3 changed files with 6 additions and 8 deletions
|
|
@ -24,7 +24,7 @@ pub fn target() -> Target {
|
|||
Target {
|
||||
llvm_target: "i686-pc-windows-msvc".into(),
|
||||
metadata: crate::spec::TargetMetadata {
|
||||
description: Some("32-bit MSVC (Windows 7+)".into()),
|
||||
description: Some("32-bit MSVC (Windows 10+)".into()),
|
||||
tier: Some(1),
|
||||
host_tools: Some(true),
|
||||
std: Some(true),
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ pub fn target() -> Target {
|
|||
Target {
|
||||
llvm_target: "x86_64-pc-windows-msvc".into(),
|
||||
metadata: crate::spec::TargetMetadata {
|
||||
description: Some("64-bit MSVC (Windows 7+)".into()),
|
||||
description: Some("64-bit MSVC (Windows 10+)".into()),
|
||||
tier: Some(1),
|
||||
host_tools: Some(true),
|
||||
std: Some(true),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue