-
Notifications
You must be signed in to change notification settings - Fork 903
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: Explicitly demarcate platform support
As discussed in today's meeting, this commit creates two tiers of support. Tier 1, which is what we actively test, and Tier 2, what we hope compiles. Signed-off-by: John Nunley <[email protected]>
- Loading branch information
Showing
2 changed files
with
54 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
# Platform/Architecture Support | ||
|
||
Platform support on `winit` has two tiers: Tier 1 and Tier 2. | ||
|
||
- Tier 1 is **guaranteed to work**. Targets in this tier are actively tested | ||
both in CI and by maintainers. | ||
- Tier 2 is **guaranteed to build**. Code compilation is tested in CI, but deeper | ||
testing is not done. | ||
|
||
Please open an issue if you would like to add a Tier 2 target, or if you would | ||
like a Tier 2 target moved to Tier 1. | ||
|
||
## Tier 1 Targets | ||
|
||
|Target Name |Target Triple |APIs | | ||
|-------------------------------|------------------------------------|---------------| | ||
|32-Bit x86 Windows with MSVC |`i686-pc-windows-msvc` |Win32 | | ||
|64-Bit x86 Windows with MSVC |`x86_64-pc-windows-msvc` |Win32 | | ||
|32-Bit x86 Windows with glibc |`i686-pc-windows-gnu` |Win32 | | ||
|64-Bit x86 Windows with glibc |`x86_64-pc-windows-gnu` |Win32 | | ||
|32-Bit x86 Linux with glibc |`i686-unknown-linux-gnu` |X11, Wayland | | ||
|64-Bit x86 Linux with glibc |`x86_64-unknown-linux-gnu` |X11, Wayland | | ||
|64-Bit ARM Android |`aarch64-linux-android` |Android | | ||
|64-Bit x86 Redox OS |`x86_64-unknown-redox` |Orbital | | ||
|64-bit x64 macOS |`x86_64-apple-darwin` |AppKit | | ||
|64-bit ARM macOS |`aarch64-apple-darwin` |AppKit | | ||
|64-bit x64 iOS |`x86_64-apple-ios` |UIKit | | ||
|64-bit ARM iOS |`aarch64-apple-ios` |UIKit | | ||
|32-bit WASM web browser |`wasm32-unknown-unknown` |DOM | | ||
|
||
## Tier 2 Targets | ||
|
||
|Target Name |Target Triple |APIs | | ||
|------------------------------------|------------------------------------|---------------| | ||
|64-Bit ARM Windows with MSVC |`aarch64-pc-windows-msvc` |Win32 | | ||
|32-Bit x86 Windows 7 with MSVC |`i686-win7-windows-msvc` |Win32 | | ||
|64-Bit x86 Windows 7 with MSVC |`x86_64-win7-windows-msvc` |Win32 | | ||
|64-bit x86 Linux with Musl |`x86_64-unknown-linux-musl` |X11, Wayland | | ||
|64-bit x86 Linux with 32-bit glibc |`x86_64-unknown-linux-gnux32` |X11, Wayland | | ||
|64-bit x86 Android |`x86_64-linux-android` |Android | | ||
|32-bit x86 Android |`i686-linux-android` |Android | | ||
|64-bit x86 FreeBSD |`x86_64-unknown-freebsd` |X11, Wayland | | ||
|64-bit x86 NetBSD |`x86_64-unknown-netbsd` |X11 | | ||
|32-bit x86 Linux with Musl |`i686-unknown-linux-musl` |X11, Wayland | | ||
|64-bit RISC-V Linux with glibc |`riscv64gc-unknown-linux-gnu` |X11, Wayland | | ||
|64-bit ARM Linux with glibc |`aarch64-unknown-linux-gnu` |X11, Wayland | | ||
|64-bit ARM Linux with Musl |`aarch64-unknown-linux-musl` |X11, Wayland | | ||
|64-bit PowerPC Linux with glibc |`powerpc64le-unknown-linux-gnu` |X11, Wayland | | ||
|32-Bit ARM Linux with glibc |`armv5te-unknown-linux-gnueabi` |X11, Wayland | | ||
|64-Bit Linux on IBM Supercomputers |`s390x-unknown-linux-gnu` |X11, Wayland | | ||
|32-bit ARM Android |`arm-linux-androideabi` |Android | | ||
|64-bit SPARC Linux with glibc |`sparc64-unknown-linux-gnu` |X11, Wayland | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters