Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit de0c02c

Browse files
committedApr 30, 2024
Recapitalise ARMvX{-Y} to ArmvX{-Y}
Yes it looks weird, but this is how Arm write it now. I left ARM64 alone, because it's a Microsoft/Apple term but not an Arm term (they have Armv8-A and Armv9-A architectures, which say that A64 instructions are executed when in the Aarch64 state), and I don't want to get into that, especially for a Tier 1 target.
1 parent 8cea4f3 commit de0c02c

15 files changed

+81
-81
lines changed
 

‎src/doc/rustc/src/platform-support.md

Lines changed: 49 additions & 49 deletions
Original file line numberDiff line numberDiff line change
@@ -89,9 +89,9 @@ target | notes
8989
`aarch64-apple-darwin` | ARM64 macOS (11.0+, Big Sur+)
9090
`aarch64-pc-windows-msvc` | ARM64 Windows MSVC
9191
`aarch64-unknown-linux-musl` | ARM64 Linux with musl 1.2.3
92-
`arm-unknown-linux-gnueabi` | ARMv6 Linux (kernel 3.2, glibc 2.17)
93-
`arm-unknown-linux-gnueabihf` | ARMv6 Linux, hardfloat (kernel 3.2, glibc 2.17)
94-
`armv7-unknown-linux-gnueabihf` | ARMv7-A Linux, hardfloat (kernel 3.2, glibc 2.17)
92+
`arm-unknown-linux-gnueabi` | Armv6 Linux (kernel 3.2, glibc 2.17)
93+
`arm-unknown-linux-gnueabihf` | Armv6 Linux, hardfloat (kernel 3.2, glibc 2.17)
94+
`armv7-unknown-linux-gnueabihf` | Armv7-A Linux, hardfloat (kernel 3.2, glibc 2.17)
9595
[`loongarch64-unknown-linux-gnu`](platform-support/loongarch-linux.md) | LoongArch64 Linux, LP64D ABI (kernel 5.19, glibc 2.36)
9696
`powerpc-unknown-linux-gnu` | PowerPC Linux (kernel 3.2, glibc 2.17)
9797
`powerpc64-unknown-linux-gnu` | PPC64 Linux (kernel 3.2, glibc 2.17)
@@ -143,21 +143,21 @@ target | std | notes
143143
`aarch64-unknown-none-softfloat` | * | Bare ARM64, softfloat
144144
`aarch64-unknown-none` | * | Bare ARM64, hardfloat
145145
[`aarch64-unknown-uefi`](platform-support/unknown-uefi.md) | ? | ARM64 UEFI
146-
[`arm-linux-androideabi`](platform-support/android.md) | ✓ | ARMv6 Android
147-
`arm-unknown-linux-musleabi` | ✓ | ARMv6 Linux with musl 1.2.3
148-
`arm-unknown-linux-musleabihf` | ✓ | ARMv6 Linux with musl 1.2.3, hardfloat
149-
[`armebv7r-none-eabi`](platform-support/armv7r-none-eabi.md) | * | Bare ARMv7-R, Big Endian
150-
[`armebv7r-none-eabihf`](platform-support/armv7r-none-eabi.md) | * | Bare ARMv7-R, Big Endian, hardfloat
151-
`armv5te-unknown-linux-gnueabi` | ✓ | ARMv5TE Linux (kernel 4.4, glibc 2.23)
152-
`armv5te-unknown-linux-musleabi` | ✓ | ARMv5TE Linux with musl 1.2.3
153-
[`armv7-linux-androideabi`](platform-support/android.md) | ✓ | ARMv7-A Android
154-
`armv7-unknown-linux-gnueabi` | ✓ | ARMv7-A Linux (kernel 4.15, glibc 2.27)
155-
`armv7-unknown-linux-musleabi` | ✓ | ARMv7-A Linux with musl 1.2.3
156-
`armv7-unknown-linux-musleabihf` | ✓ | ARMv7-A Linux with musl 1.2.3, hardfloat
157-
[`armv7-unknown-linux-ohos`](platform-support/openharmony.md) | ✓ | ARMv7-A OpenHarmony
158-
[`armv7a-none-eabi`](platform-support/arm-none-eabi.md) | * | Bare ARMv7-A
159-
[`armv7r-none-eabi`](platform-support/armv7r-none-eabi.md) | * | Bare ARMv7-R
160-
[`armv7r-none-eabihf`](platform-support/armv7r-none-eabi.md) | * | Bare ARMv7-R, hardfloat
146+
[`arm-linux-androideabi`](platform-support/android.md) | ✓ | Armv6 Android
147+
`arm-unknown-linux-musleabi` | ✓ | Armv6 Linux with musl 1.2.3
148+
`arm-unknown-linux-musleabihf` | ✓ | Armv6 Linux with musl 1.2.3, hardfloat
149+
[`armebv7r-none-eabi`](platform-support/armv7r-none-eabi.md) | * | Bare Armv7-R, Big Endian
150+
[`armebv7r-none-eabihf`](platform-support/armv7r-none-eabi.md) | * | Bare Armv7-R, Big Endian, hardfloat
151+
`armv5te-unknown-linux-gnueabi` | ✓ | Armv5TE Linux (kernel 4.4, glibc 2.23)
152+
`armv5te-unknown-linux-musleabi` | ✓ | Armv5TE Linux with musl 1.2.3
153+
[`armv7-linux-androideabi`](platform-support/android.md) | ✓ | Armv7-A Android
154+
`armv7-unknown-linux-gnueabi` | ✓ | Armv7-A Linux (kernel 4.15, glibc 2.27)
155+
`armv7-unknown-linux-musleabi` | ✓ | Armv7-A Linux with musl 1.2.3
156+
`armv7-unknown-linux-musleabihf` | ✓ | Armv7-A Linux with musl 1.2.3, hardfloat
157+
[`armv7-unknown-linux-ohos`](platform-support/openharmony.md) | ✓ | Armv7-A OpenHarmony
158+
[`armv7a-none-eabi`](platform-support/arm-none-eabi.md) | * | Bare Armv7-A
159+
[`armv7r-none-eabi`](platform-support/armv7r-none-eabi.md) | * | Bare Armv7-R
160+
[`armv7r-none-eabihf`](platform-support/armv7r-none-eabi.md) | * | Bare Armv7-R, hardfloat
161161
`i586-pc-windows-msvc` | * | 32-bit Windows w/o SSE [^x86_32-floats-x87]
162162
`i586-unknown-linux-gnu` | ✓ | 32-bit Linux w/o SSE (kernel 3.2, glibc 2.17) [^x86_32-floats-x87]
163163
`i586-unknown-linux-musl` | ✓ | 32-bit Linux w/o SSE, musl 1.2.3 [^x86_32-floats-x87]
@@ -178,15 +178,15 @@ target | std | notes
178178
`riscv64imac-unknown-none-elf` | * | Bare RISC-V (RV64IMAC ISA)
179179
`sparc64-unknown-linux-gnu` | ✓ | SPARC Linux (kernel 4.4, glibc 2.23)
180180
`sparcv9-sun-solaris` | ✓ | SPARC Solaris 11, illumos
181-
[`thumbv6m-none-eabi`](platform-support/thumbv6m-none-eabi.md) | * | Bare ARMv6-M
182-
[`thumbv7em-none-eabi`](platform-support/thumbv7em-none-eabi.md) | * | Bare ARMv7E-M
183-
[`thumbv7em-none-eabihf`](platform-support/thumbv7em-none-eabi.md) | * | Bare ARMV7E-M, hardfloat
184-
[`thumbv7m-none-eabi`](platform-support/thumbv7m-none-eabi.md) | * | Bare ARMv7-M
185-
[`thumbv7neon-linux-androideabi`](platform-support/android.md) | ✓ | Thumb2-mode ARMv7-A Android with NEON
186-
`thumbv7neon-unknown-linux-gnueabihf` | ✓ | Thumb2-mode ARMv7-A Linux with NEON (kernel 4.4, glibc 2.23)
187-
[`thumbv8m.base-none-eabi`](platform-support/thumbv8m.base-none-eabi.md) | * | Bare ARMv8-M Baseline
188-
[`thumbv8m.main-none-eabi`](platform-support/thumbv8m.main-none-eabi.md) | * | Bare ARMv8-M Mainline
189-
[`thumbv8m.main-none-eabihf`](platform-support/thumbv8m.main-none-eabi.md) | * | Bare ARMv8-M Mainline, hardfloat
181+
[`thumbv6m-none-eabi`](platform-support/thumbv6m-none-eabi.md) | * | Bare Armv6-M
182+
[`thumbv7em-none-eabi`](platform-support/thumbv7em-none-eabi.md) | * | Bare Armv7E-M
183+
[`thumbv7em-none-eabihf`](platform-support/thumbv7em-none-eabi.md) | * | Bare Armv7E-M, hardfloat
184+
[`thumbv7m-none-eabi`](platform-support/thumbv7m-none-eabi.md) | * | Bare Armv7-M
185+
[`thumbv7neon-linux-androideabi`](platform-support/android.md) | ✓ | Thumb2-mode Armv7-A Android with NEON
186+
`thumbv7neon-unknown-linux-gnueabihf` | ✓ | Thumb2-mode Armv7-A Linux with NEON (kernel 4.4, glibc 2.23)
187+
[`thumbv8m.base-none-eabi`](platform-support/thumbv8m.base-none-eabi.md) | * | Bare Armv8-M Baseline
188+
[`thumbv8m.main-none-eabi`](platform-support/thumbv8m.main-none-eabi.md) | * | Bare Armv8-M Mainline
189+
[`thumbv8m.main-none-eabihf`](platform-support/thumbv8m.main-none-eabi.md) | * | Bare Armv8-M Mainline, hardfloat
190190
`wasm32-unknown-emscripten` | ✓ | WebAssembly via Emscripten
191191
`wasm32-unknown-unknown` | ✓ | WebAssembly
192192
`wasm32-wasi` | ✓ | WebAssembly with WASI (undergoing a [rename to `wasm32-wasip1`][wasi-rename])
@@ -264,27 +264,27 @@ target | std | host | notes
264264
`aarch64_be-unknown-linux-gnu_ilp32` | ✓ | ✓ | ARM64 Linux (big-endian, ILP32 ABI)
265265
`aarch64_be-unknown-linux-gnu` | ✓ | ✓ | ARM64 Linux (big-endian)
266266
[`aarch64_be-unknown-netbsd`](platform-support/netbsd.md) | ✓ | ✓ | ARM64 NetBSD (big-endian)
267-
[`arm64_32-apple-watchos`](platform-support/apple-watchos.md) | ✓ | | ARM Apple WatchOS 64-bit with 32-bit pointers
268-
[`armeb-unknown-linux-gnueabi`](platform-support/armeb-unknown-linux-gnueabi.md) | ✓ | ? | ARM BE8 the default ARM big-endian architecture since [ARMv6](https://developer.arm.com/documentation/101754/0616/armlink-Reference/armlink-Command-line-Options/--be8?lang=en).
269-
[`armv4t-none-eabi`](platform-support/armv4t-none-eabi.md) | * | | Bare ARMv4T
270-
`armv4t-unknown-linux-gnueabi` | ? | | ARMv4T Linux
271-
[`armv5te-none-eabi`](platform-support/armv5te-none-eabi.md) | * | | Bare ARMv5TE
272-
`armv5te-unknown-linux-uclibceabi` | ? | | ARMv5TE Linux with uClibc
273-
`armv6-unknown-freebsd` | ✓ | ✓ | ARMv6 FreeBSD
274-
[`armv6-unknown-netbsd-eabihf`](platform-support/netbsd.md) | ✓ | ✓ | ARMv6 NetBSD w/hard-float
275-
[`armv6k-nintendo-3ds`](platform-support/armv6k-nintendo-3ds.md) | ? | | ARMv6K Nintendo 3DS, Horizon (Requires devkitARM toolchain)
276-
[`armv7-sony-vita-newlibeabihf`](platform-support/armv7-sony-vita-newlibeabihf.md) | ✓ | | ARMv7-A Cortex-A9 Sony PlayStation Vita (requires VITASDK toolchain)
277-
[`armv7-unknown-linux-uclibceabi`](platform-support/armv7-unknown-linux-uclibceabi.md) | ✓ | ✓ | ARMv7-A Linux with uClibc, softfloat
278-
[`armv7-unknown-linux-uclibceabihf`](platform-support/armv7-unknown-linux-uclibceabihf.md) | ✓ | ? | ARMv7-A Linux with uClibc, hardfloat
279-
`armv7-unknown-freebsd` | ✓ | ✓ | ARMv7-A FreeBSD
280-
[`armv7-unknown-netbsd-eabihf`](platform-support/netbsd.md) | ✓ | ✓ | ARMv7-A NetBSD w/hard-float
281-
`armv7-wrs-vxworks-eabihf` | ? | | ARMv7-A for VxWorks
267+
[`arm64_32-apple-watchos`](platform-support/apple-watchos.md) | ✓ | | Arm Apple WatchOS 64-bit with 32-bit pointers
268+
[`armeb-unknown-linux-gnueabi`](platform-support/armeb-unknown-linux-gnueabi.md) | ✓ | ? | Arm BE8 the default Arm big-endian architecture since [Armv6](https://developer.arm.com/documentation/101754/0616/armlink-Reference/armlink-Command-line-Options/--be8?lang=en).
269+
[`armv4t-none-eabi`](platform-support/armv4t-none-eabi.md) | * | | Bare Armv4T
270+
`armv4t-unknown-linux-gnueabi` | ? | | Armv4T Linux
271+
[`armv5te-none-eabi`](platform-support/armv5te-none-eabi.md) | * | | Bare Armv5TE
272+
`armv5te-unknown-linux-uclibceabi` | ? | | Armv5TE Linux with uClibc
273+
`armv6-unknown-freebsd` | ✓ | ✓ | Armv6 FreeBSD
274+
[`armv6-unknown-netbsd-eabihf`](platform-support/netbsd.md) | ✓ | ✓ | Armv6 NetBSD w/hard-float
275+
[`armv6k-nintendo-3ds`](platform-support/armv6k-nintendo-3ds.md) | ? | | Armv6k Nintendo 3DS, Horizon (Requires devkitARM toolchain)
276+
[`armv7-sony-vita-newlibeabihf`](platform-support/armv7-sony-vita-newlibeabihf.md) | ✓ | | Armv7-A Cortex-A9 Sony PlayStation Vita (requires VITASDK toolchain)
277+
[`armv7-unknown-linux-uclibceabi`](platform-support/armv7-unknown-linux-uclibceabi.md) | ✓ | ✓ | Armv7-A Linux with uClibc, softfloat
278+
[`armv7-unknown-linux-uclibceabihf`](platform-support/armv7-unknown-linux-uclibceabihf.md) | ✓ | ? | Armv7-A Linux with uClibc, hardfloat
279+
`armv7-unknown-freebsd` | ✓ | ✓ | Armv7-A FreeBSD
280+
[`armv7-unknown-netbsd-eabihf`](platform-support/netbsd.md) | ✓ | ✓ | Armv7-A NetBSD w/hard-float
281+
`armv7-wrs-vxworks-eabihf` | ? | | Armv7-A for VxWorks
282282
[`armv7a-kmc-solid_asp3-eabi`](platform-support/kmc-solid.md) | ✓ | | ARM SOLID with TOPPERS/ASP3
283283
[`armv7a-kmc-solid_asp3-eabihf`](platform-support/kmc-solid.md) | ✓ | | ARM SOLID with TOPPERS/ASP3, hardfloat
284-
[`armv7a-none-eabihf`](platform-support/arm-none-eabi.md) | * | | Bare ARMv7-A, hardfloat
285-
[`armv7k-apple-watchos`](platform-support/apple-watchos.md) | ✓ | | ARMv7-A Apple WatchOS
286-
`armv7s-apple-ios` | ✓ | | ARMv7-A Apple-A6 Apple iOS
287-
[`armv8r-none-eabihf`](platform-support/armv8r-none-eabihf.md) | * | | Bare ARMv8-R, hardfloat
284+
[`armv7a-none-eabihf`](platform-support/arm-none-eabi.md) | * | | Bare Armv7-A, hardfloat
285+
[`armv7k-apple-watchos`](platform-support/apple-watchos.md) | ✓ | | Armv7-A Apple WatchOS
286+
`armv7s-apple-ios` | ✓ | | Armv7-A Apple-A6 Apple iOS
287+
[`armv8r-none-eabihf`](platform-support/armv8r-none-eabihf.md) | * | | Bare Armv8-R, hardfloat
288288
`avr-unknown-gnu-atmega328` | * | | AVR. Requires `-Z build-std=core`
289289
`bpfeb-unknown-none` | * | | BPF (big endian)
290290
`bpfel-unknown-none` | * | | BPF (little endian)
@@ -360,11 +360,11 @@ target | std | host | notes
360360
[`sparc-unknown-none-elf`](./platform-support/sparc-unknown-none-elf.md) | * | | Bare 32-bit SPARC V7+
361361
[`sparc64-unknown-netbsd`](platform-support/netbsd.md) | ✓ | ✓ | NetBSD/sparc64
362362
[`sparc64-unknown-openbsd`](platform-support/openbsd.md) | ✓ | ✓ | OpenBSD/sparc64
363-
[`thumbv4t-none-eabi`](platform-support/armv4t-none-eabi.md) | * | | Thumb-mode Bare ARMv4T
364-
[`thumbv5te-none-eabi`](platform-support/armv5te-none-eabi.md) | * | | Thumb-mode Bare ARMv5TE
363+
[`thumbv4t-none-eabi`](platform-support/armv4t-none-eabi.md) | * | | Thumb-mode Bare Armv4T
364+
[`thumbv5te-none-eabi`](platform-support/armv5te-none-eabi.md) | * | | Thumb-mode Bare Armv5TE
365365
`thumbv7a-pc-windows-msvc` | ? | |
366366
`thumbv7a-uwp-windows-msvc` | ✓ | |
367-
`thumbv7neon-unknown-linux-musleabihf` | ? | | Thumb2-mode ARMv7-A Linux with NEON, musl 1.2.3
367+
`thumbv7neon-unknown-linux-musleabihf` | ? | | Thumb2-mode Armv7-A Linux with NEON, musl 1.2.3
368368
[`wasm32-wasip2`](platform-support/wasm32-wasip2.md) | ✓ | | WebAssembly
369369
[`wasm64-unknown-unknown`](platform-support/wasm64-unknown-unknown.md) | ? | | WebAssembly
370370
`x86_64-apple-ios-macabi` | ✓ | | Apple Catalyst on x86_64

‎src/doc/rustc/src/platform-support/arm-none-eabi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
## Common Target Details
3232

3333
This documentation covers details that apply to a range of bare-metal targets
34-
for 32-bit ARM CPUs. In addition, target specific details may be covered in
34+
for 32-bit Arm CPUs. In addition, target specific details may be covered in
3535
their own document.
3636

3737
If a target ends in `eabi`, that target uses the so-called *soft-float ABI*:

‎src/doc/rustc/src/platform-support/armeb-unknown-linux-gnueabi.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
# armeb-unknown-linux-gnueabi
22
**Tier: 3**
33

4-
Target for cross-compiling Linux user-mode applications targeting the ARM BE8 architecture.
4+
Target for cross-compiling Linux user-mode applications targeting the Arm BE8 architecture.
55

66
## Overview
7-
BE8 architecture retains the same little-endian ordered code-stream used by conventional little endian ARM systems, however the data accesses are in big-endian. BE8 is used primarily in high-performance networking applications where the ability to read packets in their native "Network Byte Order" is important (many network protocols transmit data in big-endian byte order for their wire formats).
7+
BE8 architecture retains the same little-endian ordered code-stream used by conventional little endian Arm systems, however the data accesses are in big-endian. BE8 is used primarily in high-performance networking applications where the ability to read packets in their native "Network Byte Order" is important (many network protocols transmit data in big-endian byte order for their wire formats).
88

99
## History
10-
BE8 architecture is the default big-endian architecture for ARM since [ARMv6](https://developer.arm.com/documentation/101754/0616/armlink-Reference/armlink-Command-line-Options/--be8?lang=en). It's predecessor, used for ARMv4 and ARMv5 devices was [BE32](https://developer.arm.com/documentation/dui0474/j/linker-command-line-options/--be32). On ARMv6 architecture, endianness can be configured via [system registers](https://developer.arm.com/documentation/ddi0290/g/unaligned-and-mixed-endian-data-access-support/mixed-endian-access-support/interaction-between-the-bus-protocol-and-the-core-endianness). However, BE32 was withdrawn for [ARMv7](https://developer.arm.com/documentation/ddi0406/cb/Appendixes/Deprecated-and-Obsolete-Features/Obsolete-features/Support-for-BE-32-endianness-model) onwards.
10+
BE8 architecture is the default big-endian architecture for Arm since [Armv6](https://developer.arm.com/documentation/101754/0616/armlink-Reference/armlink-Command-line-Options/--be8?lang=en). It's predecessor, used for Armv4 and Armv5 devices was [BE32](https://developer.arm.com/documentation/dui0474/j/linker-command-line-options/--be32). On Armv6 architecture, endianness can be configured via [system registers](https://developer.arm.com/documentation/ddi0290/g/unaligned-and-mixed-endian-data-access-support/mixed-endian-access-support/interaction-between-the-bus-protocol-and-the-core-endianness). However, BE32 was withdrawn for [Armv7](https://developer.arm.com/documentation/ddi0406/cb/Appendixes/Deprecated-and-Obsolete-Features/Obsolete-features/Support-for-BE-32-endianness-model) onwards.
1111

1212
## Target Maintainers
1313
* [@WorksButNotTested](https://github.com/WorksButNotTested)
1414

1515
## Requirements
16-
The target is cross-compiled. This target supports `std` in the normal way (indeed only nominal changes are required from the standard ARM configuration).
16+
The target is cross-compiled. This target supports `std` in the normal way (indeed only nominal changes are required from the standard Arm configuration).
1717

1818
## Target definition
19-
The target definition can be seen [here](https://github.com/rust-lang/rust/tree/master/compiler/rustc_target/src/spec/armeb_unknown_linux_gnueabi.rs). In particular, it should be noted that the `features` specify that this target is built for the ARMv8 core. Though this can likely be modified as required.
19+
The target definition can be seen [here](https://github.com/rust-lang/rust/tree/master/compiler/rustc_target/src/spec/armeb_unknown_linux_gnueabi.rs). In particular, it should be noted that the `features` specify that this target is built for the Armv8 core. Though this can likely be modified as required.
2020

2121
## Building the target
2222
Because it is Tier 3, rust does not yet ship pre-compiled artifacts for this target.

‎src/doc/rustc/src/platform-support/armv4t-none-eabi.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22

33
Tier 3
44

5-
Bare-metal target for any cpu in the ARMv4T architecture family, supporting
6-
ARM/Thumb code interworking (aka `a32`/`t32`), with ARM code as the default code
5+
Bare-metal target for any cpu in the Armv4T architecture family, supporting
6+
ARM/Thumb code interworking (aka `A32`/`T32`), with ARM code as the default code
77
generation.
88

99
In particular this supports the Game Boy Advance (GBA), but there's nothing
10-
GBA-specific with this target, so any ARMv4T device should work fine.
10+
GBA-specific with this target, so any Armv4T device should work fine.
1111

1212
See [`arm-none-eabi`](arm-none-eabi.md) for information applicable to all
1313
`arm-none-eabi` targets.

‎src/doc/rustc/src/platform-support/armv5te-none-eabi.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22

33
**Tier: 3**
44

5-
Bare-metal target for any cpu in the ARMv5TE architecture family, supporting
6-
ARM/Thumb code interworking (aka `a32`/`t32`), with `a32` code as the default code
5+
Bare-metal target for any cpu in the Armv5TE architecture family, supporting
6+
ARM/Thumb code interworking (aka `A32`/`T32`), with `A32` code as the default code
77
generation.
88

9-
The `thumbv5te-none-eabi` target is the same as this one, but the instruction set defaults to `t32`.
9+
The `thumbv5te-none-eabi` target is the same as this one, but the instruction set defaults to `T32`.
1010

1111
See [`arm-none-eabi`](arm-none-eabi.md) for information applicable to all
1212
`arm-none-eabi` targets.

‎src/doc/rustc/src/platform-support/armv6k-nintendo-3ds.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
**Tier: 3**
44

5-
The Nintendo 3DS platform, which has an ARMv6K processor, and its associated
5+
The Nintendo 3DS platform, which has an Armv6k processor, and its associated
66
operating system (`horizon`).
77

88
Rust support for this target is not affiliated with Nintendo, and is not derived

‎src/doc/rustc/src/platform-support/armv7-unknown-linux-uclibceabi.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
**Tier: 3**
44

5-
This target supports ARMv7 softfloat CPUs and uses the uclibc-ng standard library. This is a common configuration on many consumer routers (e.g., Netgear R7000, Asus RT-AC68U).
5+
This target supports Armv7-A softfloat CPUs and uses the uclibc-ng standard library. This is a common configuration on many consumer routers (e.g., Netgear R7000, Asus RT-AC68U).
66

77
## Target maintainers
88

@@ -16,7 +16,7 @@ This target supports host tools and std.
1616

1717
## Building the target
1818

19-
You will need to download or build a `'C'` cross toolchain that targets ARMv7 softfloat and that uses the uclibc-ng standard library. If your target hardware is something like a router or an embedded device, keep in mind that manufacturer supplied SDKs for this class of CPU could be outdated and potentially unsuitable for bootstrapping rust.
19+
You will need to download or build a `'C'` cross toolchain that targets Armv7-A softfloat and that uses the uclibc-ng standard library. If your target hardware is something like a router or an embedded device, keep in mind that manufacturer supplied SDKs for this class of CPU could be outdated and potentially unsuitable for bootstrapping rust.
2020

2121
[Here](https://github.com/lancethepants/tomatoware-toolchain) is a sample toolchain that is built using [buildroot](https://buildroot.org/). It uses modern toolchain components, older thus universal kernel headers (2.6.36.4), and is used for a project called [Tomatoware](https://github.com/lancethepants/tomatoware). This toolchain is patched so that its sysroot is located at /mmc (e.g., /mmc/bin, /mmc/lib, /mmc/include). This is useful in scenarios where the root filesystem is read-only but you are able attach external storage loaded with user applications. Tomatoware is an example of this that even allows you to run various compilers and developer tools natively on the target device.
2222

@@ -46,7 +46,7 @@ The following assumes you are using the Tomatoware toolchain and environment. Ad
4646

4747
### Native compilation
4848

49-
Since this target supports host tools, you can natively build rust applications directly on your target device. This can be convenient because it removes the complexities of cross compiling and you can immediately test and deploy your binaries. One downside is that compiling on your ARMv7 CPU will probably be much slower than cross compilation on your x86 machine.
49+
Since this target supports host tools, you can natively build rust applications directly on your target device. This can be convenient because it removes the complexities of cross compiling and you can immediately test and deploy your binaries. One downside is that compiling on your Armv7-A CPU will probably be much slower than cross compilation on your x86 machine.
5050

5151
To setup native compilation:
5252

‎src/doc/rustc/src/platform-support/armv7-unknown-linux-uclibceabihf.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
**Tier: 3**
44

5-
This tier supports the ARMv7 processor running a Linux kernel and uClibc-ng standard library. It provides full support for rust and the rust standard library.
5+
This tier supports the Armv7-A processor running a Linux kernel and uClibc-ng standard library. It provides full support for rust and the rust standard library.
66

77
## Designated Developers
88

‎src/doc/rustc/src/platform-support/armv7r-none-eabi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
**Tier: 2**
44

5-
Bare-metal target for CPUs in the ARMv7-R architecture family, supporting
5+
Bare-metal target for CPUs in the Armv7-R architecture family, supporting
66
dual ARM/Thumb mode, with ARM mode as the default.
77

88
Processors in this family include the [Arm Cortex-R4, 5, 7, and 8][cortex-r].

‎src/doc/rustc/src/platform-support/armv8r-none-eabihf.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
**Tier: 3**
44

5-
Bare-metal target for CPUs in the ARMv8-R architecture family, supporting
5+
Bare-metal target for CPUs in the Armv8-R architecture family, supporting
66
dual ARM/Thumb mode, with ARM mode as the default.
77

88
Processors in this family include the Arm [Cortex-R52][cortex-r52]

‎src/doc/rustc/src/platform-support/thumbv6m-none-eabi.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
**Tier: 2**
44

5-
Bare-metal target for CPUs in the [ARMv6-M] architecture family, supporting a
5+
Bare-metal target for CPUs in the [Armv6-M] architecture family, supporting a
66
subset of the [T32 ISA][t32-isa].
77

88
Processors in this family include the:
@@ -16,10 +16,10 @@ See [`arm-none-eabi`](arm-none-eabi.md) for information applicable to all
1616

1717
This target uses the soft-float ABI: functions which take `f32` or `f64` as
1818
arguments will have those values packed into integer registers. This is the
19-
only option because there is no FPU support in [ARMv6-M].
19+
only option because there is no FPU support in [Armv6-M].
2020

2121
[t32-isa]: https://developer.arm.com/Architectures/T32%20Instruction%20Set%20Architecture
22-
[ARMv6-M]: https://developer.arm.com/documentation/ddi0419/latest/
22+
[Armv6-M]: https://developer.arm.com/documentation/ddi0419/latest/
2323
[cortex-m0]: https://developer.arm.com/Processors/Cortex-M0
2424
[cortex-m0plus]: https://developer.arm.com/Processors/Cortex-M0+
2525
[cortex-m1]: https://developer.arm.com/Processors/Cortex-M1

‎src/doc/rustc/src/platform-support/thumbv7em-none-eabi.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
**Tier: 2**
44

5-
Bare-metal target for CPUs in the [ARMv7E-M] architecture family, supporting a
5+
Bare-metal target for CPUs in the [Armv7E-M] architecture family, supporting a
66
subset of the [T32 ISA][t32-isa].
77

88
Processors in this family include the:
@@ -15,7 +15,7 @@ See [`arm-none-eabi`](arm-none-eabi.md) for information applicable to all
1515
`eabihf` ABI.
1616

1717
[t32-isa]: https://developer.arm.com/Architectures/T32%20Instruction%20Set%20Architecture
18-
[ARMv7E-M]: https://developer.arm.com/documentation/ddi0403/latest/
18+
[Armv7E-M]: https://developer.arm.com/documentation/ddi0403/latest/
1919
[cortex-m4]: https://developer.arm.com/Processors/Cortex-M4
2020
[cortex-m7]: https://developer.arm.com/Processors/Cortex-M7
2121

‎src/doc/rustc/src/platform-support/thumbv7m-none-eabi.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
**Tier: 2**
44

5-
Bare-metal target for CPUs in the [ARMv7-M] architecture family, supporting a
5+
Bare-metal target for CPUs in the [Armv7-M] architecture family, supporting a
66
subset of the [T32 ISA][t32-isa].
77

88
Processors in this family include the:
@@ -14,10 +14,10 @@ See [`arm-none-eabi`](arm-none-eabi.md) for information applicable to all
1414

1515
This target uses the soft-float ABI: functions which take `f32` or `f64` as
1616
arguments will have those values packed into integer registers. This is the
17-
only option because there is no FPU support in [ARMv7-M].
17+
only option because there is no FPU support in [Armv7-M].
1818

1919
[t32-isa]: https://developer.arm.com/Architectures/T32%20Instruction%20Set%20Architecture
20-
[ARMv7-M]: https://developer.arm.com/documentation/ddi0403/latest/
20+
[Armv7-M]: https://developer.arm.com/documentation/ddi0403/latest/
2121
[cortex-m3]: https://developer.arm.com/Processors/Cortex-M3
2222

2323
## Target maintainers

‎src/doc/rustc/src/platform-support/thumbv8m.base-none-eabi.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
**Tier: 2**
44

5-
Bare-metal target for CPUs in the Baseline [ARMv8-M] architecture family,
5+
Bare-metal target for CPUs in the Baseline [Armv8-M] architecture family,
66
supporting a subset of the [T32 ISA][t32-isa].
77

88
Processors in this family include the:
@@ -14,10 +14,10 @@ See [`arm-none-eabi`](arm-none-eabi.md) for information applicable to all
1414

1515
This target uses the soft-float ABI: functions which take `f32` or `f64` as
1616
arguments will have those values packed into integer registers. This is the
17-
only option because there is no FPU support in [ARMv8-M] Baseline.
17+
only option because there is no FPU support in [Armv8-M] Baseline.
1818

1919
[t32-isa]: https://developer.arm.com/Architectures/T32%20Instruction%20Set%20Architecture
20-
[ARMv8-M]: https://developer.arm.com/documentation/ddi0553/latest/
20+
[Armv8-M]: https://developer.arm.com/documentation/ddi0553/latest/
2121
[cortex-m23]: https://developer.arm.com/Processors/Cortex-M23
2222

2323
## Target maintainers

‎src/doc/rustc/src/platform-support/thumbv8m.main-none-eabi.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
**Tier: 2**
44

5-
Bare-metal target for CPUs in the Mainline [ARMv8-M] architecture family,
5+
Bare-metal target for CPUs in the Mainline [Armv8-M] architecture family,
66
supporting a subset of the [T32 ISA][t32-isa].
77

88
Processors in this family include the:
@@ -17,7 +17,7 @@ See [`arm-none-eabi`](arm-none-eabi.md) for information applicable to all
1717
`eabihf` ABI.
1818

1919
[t32-isa]: https://developer.arm.com/Architectures/T32%20Instruction%20Set%20Architecture
20-
[ARMv8-M]: https://developer.arm.com/documentation/ddi0553/latest/
20+
[Armv8-M]: https://developer.arm.com/documentation/ddi0553/latest/
2121
[cortex-m33]: https://developer.arm.com/Processors/Cortex-M33
2222
[cortex-m35p]: https://developer.arm.com/Processors/Cortex-M35P
2323
[cortex-m55]: https://developer.arm.com/Processors/Cortex-M55

0 commit comments

Comments
 (0)
Please sign in to comment.