diff options
| author | bors <bors@rust-lang.org> | 2024-03-16 13:53:54 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2024-03-16 13:53:54 +0000 |
| commit | 22e241e32e1331aab358ac2843ec63d4cc4ea9f4 (patch) | |
| tree | 1fdfdbb89dd3e587deb79995d0cf6fda3bcef679 | |
| parent | 9023f908cfbe7a475f369717a61cb8eb865cfd25 (diff) | |
| parent | d5f92fc585b247be225950ca3345834d747e7750 (diff) | |
| download | rust-22e241e32e1331aab358ac2843ec63d4cc4ea9f4.tar.gz rust-22e241e32e1331aab358ac2843ec63d4cc4ea9f4.zip | |
Auto merge of #122593 - ChrisDenton:windows-support-1, r=Nilstrieb
Remove Windows support note The note is redundant now that Windows 10 is the minimum supported in tier 1.
| -rw-r--r-- | src/doc/rustc/src/platform-support.md | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/src/doc/rustc/src/platform-support.md b/src/doc/rustc/src/platform-support.md index 285c773afa2..2ebbf5e15e6 100644 --- a/src/doc/rustc/src/platform-support.md +++ b/src/doc/rustc/src/platform-support.md @@ -33,16 +33,14 @@ All tier 1 targets with host tools support the full standard library. target | notes -------|------- `aarch64-unknown-linux-gnu` | ARM64 Linux (kernel 4.1, glibc 2.17+) -`i686-pc-windows-gnu` | 32-bit MinGW (Windows 10+) [^windows-support] [^x86_32-floats-return-ABI] -`i686-pc-windows-msvc` | 32-bit MSVC (Windows 10+) [^windows-support] [^x86_32-floats-return-ABI] +`i686-pc-windows-gnu` | 32-bit MinGW (Windows 10+) [^x86_32-floats-return-ABI] +`i686-pc-windows-msvc` | 32-bit MSVC (Windows 10+) [^x86_32-floats-return-ABI] `i686-unknown-linux-gnu` | 32-bit Linux (kernel 3.2+, glibc 2.17+) [^x86_32-floats-return-ABI] `x86_64-apple-darwin` | 64-bit macOS (10.12+, Sierra+) -`x86_64-pc-windows-gnu` | 64-bit MinGW (Windows 10+) [^windows-support] -`x86_64-pc-windows-msvc` | 64-bit MSVC (Windows 10+) [^windows-support] +`x86_64-pc-windows-gnu` | 64-bit MinGW (Windows 10+) +`x86_64-pc-windows-msvc` | 64-bit MSVC (Windows 10+) `x86_64-unknown-linux-gnu` | 64-bit Linux (kernel 3.2+, glibc 2.17+) -[^windows-support]: Only Windows 10 currently undergoes automated testing. Earlier versions of Windows rely on testing and support from the community. - [^x86_32-floats-return-ABI]: Due to limitations of the C ABI, floating-point support on `i686` targets is non-compliant: floating-point return values are passed via an x87 register, so NaN payload bits can be lost. See [issue #114479][x86-32-float-issue]. [77071]: https://github.com/rust-lang/rust/issues/77071 |
