diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2023-10-12 18:36:45 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-10-12 18:36:45 +0200 |
| commit | 6ccc52126785c08c1c00a9447b91573fb83f6a9c (patch) | |
| tree | f38cb8b5af545a9736996988cc07c5ca4f9534c0 | |
| parent | 4832811b0d19fd273e698ffa46a8fdac7489052e (diff) | |
| parent | 8309097163103910a08c0ed79def88ae178699ac (diff) | |
| download | rust-6ccc52126785c08c1c00a9447b91573fb83f6a9c.tar.gz rust-6ccc52126785c08c1c00a9447b91573fb83f6a9c.zip | |
Rollup merge of #116669 - ehuss:fix-platform-table, r=nikic
Fix mips platform support entries. The table entries for these MIPS entries were broken because they had the wrong number of columns (from #116503). Additionally, there was a conflict with #115238, which made the same change (but on different lines, so git didn't complain).
| -rw-r--r-- | src/doc/rustc/src/platform-support.md | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/doc/rustc/src/platform-support.md b/src/doc/rustc/src/platform-support.md index d25fa661c3f..1fb5e56db5d 100644 --- a/src/doc/rustc/src/platform-support.md +++ b/src/doc/rustc/src/platform-support.md @@ -286,10 +286,6 @@ 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 |
