Skip to content

Commit 44aa866

Browse files
authored
Rollup merge of #100641 - corwinkuiper:add-armv4t-target, r=oli-obk
Add the armv4t-none-eabi target to the supported_targets This target was added in #100244 but forgot to add it to the macro in the `mod.rs` file. ``@Lokathor``
2 parents 54d0f50 + f77a545 commit 44aa866

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

compiler/rustc_target/src/spec/mod.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1028,6 +1028,7 @@ supported_targets! {
10281028
("mipsel-sony-psp", mipsel_sony_psp),
10291029
("mipsel-unknown-none", mipsel_unknown_none),
10301030
("thumbv4t-none-eabi", thumbv4t_none_eabi),
1031+
("armv4t-none-eabi", armv4t_none_eabi),
10311032

10321033
("aarch64_be-unknown-linux-gnu", aarch64_be_unknown_linux_gnu),
10331034
("aarch64-unknown-linux-gnu_ilp32", aarch64_unknown_linux_gnu_ilp32),

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

+1
Original file line numberDiff line numberDiff line change
@@ -223,6 +223,7 @@ target | std | host | notes
223223
`aarch64_be-unknown-linux-gnu_ilp32` | ✓ | ✓ | ARM64 Linux (big-endian, ILP32 ABI)
224224
`aarch64_be-unknown-linux-gnu` | ✓ | ✓ | ARM64 Linux (big-endian)
225225
[`arm64_32-apple-watchos`](platform-support/apple-watchos.md) | ✓ | | ARM Apple WatchOS 64-bit with 32-bit pointers
226+
`armv4t-none-eabi` | * | | ARMv4T A32
226227
`armv4t-unknown-linux-gnueabi` | ? | |
227228
`armv5te-unknown-linux-uclibceabi` | ? | | ARMv5TE Linux with uClibc
228229
`armv6-unknown-freebsd` | ✓ | ✓ | ARMv6 FreeBSD

0 commit comments

Comments
 (0)