We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 033c0a4 + 0a5383c commit 4c091fbCopy full SHA for 4c091fb
4 files changed
compiler/rustc_target/src/spec/targets/aarch64_pc_windows_msvc.rs
@@ -15,7 +15,7 @@ pub(crate) fn target() -> Target {
15
llvm_target: "aarch64-pc-windows-msvc".into(),
16
metadata: TargetMetadata {
17
description: Some("ARM64 Windows MSVC".into()),
18
- tier: Some(2),
+ tier: Some(1),
19
host_tools: Some(true),
20
std: Some(true),
21
},
src/bootstrap/src/core/build_steps/llvm.rs
@@ -205,6 +205,7 @@ pub(crate) fn is_ci_llvm_available_for_target(
205
// tier 1
206
("aarch64-unknown-linux-gnu", false),
207
("aarch64-apple-darwin", false),
208
+ ("aarch64-pc-windows-msvc", false),
209
("i686-pc-windows-gnu", false),
210
("i686-pc-windows-msvc", false),
211
("i686-unknown-linux-gnu", false),
@@ -213,7 +214,6 @@ pub(crate) fn is_ci_llvm_available_for_target(
213
214
("x86_64-pc-windows-gnu", true),
215
("x86_64-pc-windows-msvc", true),
216
// tier 2 with host tools
- ("aarch64-pc-windows-msvc", false),
217
("aarch64-unknown-linux-musl", false),
218
("arm-unknown-linux-gnueabi", false),
219
("arm-unknown-linux-gnueabihf", false),
src/doc/rustc/src/platform-support.md
@@ -33,6 +33,7 @@ All tier 1 targets with host tools support the full standard library.
33
target | notes
34
-------|-------
35
[`aarch64-apple-darwin`](platform-support/apple-darwin.md) | ARM64 macOS (11.0+, Big Sur+)
36
+[`aarch64-pc-windows-msvc`](platform-support/windows-msvc.md) | ARM64 Windows MSVC
37
`aarch64-unknown-linux-gnu` | ARM64 Linux (kernel 4.1+, glibc 2.17+)
38
[`i686-pc-windows-msvc`](platform-support/windows-msvc.md) | 32-bit MSVC (Windows 10+, Windows Server 2016+, Pentium 4) [^x86_32-floats-return-ABI] [^win32-msvc-alignment]
39
`i686-unknown-linux-gnu` | 32-bit Linux (kernel 3.2+, glibc 2.17+, Pentium 4) [^x86_32-floats-return-ABI]
@@ -88,7 +89,6 @@ so Rustup may install the documentation for a similar tier 1 target instead.
88
89
90
91
[`aarch64-pc-windows-gnullvm`](platform-support/windows-gnullvm.md) | ARM64 MinGW (Windows 10+), LLVM ABI
-[`aarch64-pc-windows-msvc`](platform-support/windows-msvc.md) | ARM64 Windows MSVC
92
[`aarch64-unknown-linux-musl`](platform-support/aarch64-unknown-linux-musl.md) | ARM64 Linux with musl 1.2.3
93
[`aarch64-unknown-linux-ohos`](platform-support/openharmony.md) | ARM64 OpenHarmony
94
`arm-unknown-linux-gnueabi` | Armv6 Linux (kernel 3.2+, glibc 2.17)
src/doc/rustc/src/platform-support/windows-msvc.md
@@ -4,13 +4,10 @@ Windows MSVC targets.
4
5
**Tier 1 with host tools:**
6
7
+- `aarch64-pc-windows-msvc`: Windows on ARM64.
8
- `i686-pc-windows-msvc`: Windows on 32-bit x86.
9
- `x86_64-pc-windows-msvc`: Windows on 64-bit x86.
10
-**Tier 2 with host tools:**
11
-
12
-- `aarch64-pc-windows-msvc`: Windows on ARM64.
13
14
## Target maintainers
[@ChrisDenton](https://github.com/ChrisDenton)
0 commit comments