diff options
| author | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2023-10-10 18:44:45 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-10-10 18:44:45 +0200 |
| commit | fccf9ec22488c778df012345f58c5f49be756fce (patch) | |
| tree | 208b905157dbf26f65d1481edaa00f5d50fc049b | |
| parent | bbaf6bd13632d553255f077a33035f847ead386a (diff) | |
| parent | 8c7d232568d80bd365ef1c17e919f7fc637962d1 (diff) | |
| download | rust-fccf9ec22488c778df012345f58c5f49be756fce.tar.gz rust-fccf9ec22488c778df012345f58c5f49be756fce.zip | |
Rollup merge of #116503 - ehuss:fix-mips-tier, r=Amanieu
Update docs for mips target tier demotion. These mips targets were demoted in #113274, but the documentation was not updated. I have also elected to document this in the release notes for 1.72 because I think that should have been included.
| -rw-r--r-- | RELEASES.md | 1 | ||||
| -rw-r--r-- | src/doc/rustc/src/platform-support.md | 4 |
2 files changed, 5 insertions, 0 deletions
diff --git a/RELEASES.md b/RELEASES.md index e261294a032..1cc110e6607 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -229,6 +229,7 @@ Compatibility Notes this should only impact users of other registries, or people who don't publish to a registry. [#12291](https://github.com/rust-lang/cargo/pull/12291) +- [Demoted `mips*-unknown-linux-gnu*` targets from host tier 2 to target tier 3 support.](https://github.com/rust-lang/rust/pull/113274) Version 1.71.1 (2023-08-03) =========================== diff --git a/src/doc/rustc/src/platform-support.md b/src/doc/rustc/src/platform-support.md index 1fb5e56db5d..d25fa661c3f 100644 --- a/src/doc/rustc/src/platform-support.md +++ b/src/doc/rustc/src/platform-support.md @@ -286,6 +286,10 @@ target | std | host | notes `mipsel-unknown-linux-musl` | ✓ | | MIPS (little endian) Linux with musl libc `mipsel-sony-psp` | * | | MIPS (LE) Sony PlayStation Portable (PSP) [`mipsel-sony-psx`](platform-support/mipsel-sony-psx.md) | * | | MIPS (LE) Sony PlayStation 1 (PSX) +`mips-unknown-linux-gnu` | MIPS Linux (kernel 4.4, glibc 2.23) +`mips64-unknown-linux-gnuabi64` | MIPS64 Linux, n64 ABI (kernel 4.4, glibc 2.23) +`mips64el-unknown-linux-gnuabi64` | MIPS64 (LE) Linux, n64 ABI (kernel 4.4, glibc 2.23) +`mipsel-unknown-linux-gnu` | MIPS (LE) Linux (kernel 4.4, glibc 2.23) `mipsel-unknown-linux-uclibc` | ✓ | | MIPS (LE) Linux with uClibc `mipsel-unknown-none` | * | | Bare MIPS (LE) softfloat [`mipsisa32r6-unknown-linux-gnu`](platform-support/mips-release-6.md) | ? | | 32-bit MIPS Release 6 Big Endian |
