-
Notifications
You must be signed in to change notification settings - Fork 12.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[libc][docs] split up platform and arch support (#120125)
Creates a new toctree "Support" under which we have distinct links to arch, platform, and compiler support. * Moved "Platform Support" from index landing page to new doc. * Created explicit "Architecture Support". Requested in #118964 (comment). * Moved "Compiler Support" from Status toctree to new Support toctree. --------- Co-authored-by: Carlo Cabrera <github@carlo.cab>
- Loading branch information
1 parent
a8456c9
commit 13449c3
Showing
3 changed files
with
50 additions
and
19 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,19 @@ | ||
Architecture Support | ||
==================== | ||
|
||
The currently continuously tested architectures are: | ||
|
||
* aarch64 | ||
* amdgpu | ||
* arm | ||
* nvptx | ||
* riscv32 | ||
* riscv64 | ||
* x86_64 | ||
|
||
i386 support is [in the works](https://github.com/llvm/llvm-project/issues/93709). | ||
|
||
See "`Bringup on a New OS or Architecture <porting.html>`__" for more | ||
information. Please do first file a bug in | ||
`our issue tracker <https://github.com/llvm/llvm-project/labels/libc>`__ before | ||
starting a port that you plan to upstream. |
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
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,22 @@ | ||
Platform Support | ||
================ | ||
|
||
Development is currently mostly focused on Linux. MacOS and Windows has | ||
partial support, but has bitrot and isn't being tested continuously. | ||
|
||
LLVM-libc is currently being integrated into Android and Fuchsia operating | ||
systems via `overlay mode <overlay_mode.html>`__. | ||
|
||
For Linux, we support kernel versions as listed on | ||
`kernel.org <https://kernel.org/>`_, including ``longterm`` (not past EOL | ||
date), ``stable``, and ``mainline`` versions. We actively adopt new features | ||
from ``linux-next``. | ||
|
||
For Windows, we plan to support products within their lifecycle. Please refer to | ||
`Search Product and Services Lifecycle Information <https://learn.microsoft.com/en-us/lifecycle/products/?products=windows>`_ for more information. | ||
|
||
LLVM-libc does not guarantee backward compatibility with operating systems that | ||
have reached their EOL. Compatibility patches for obsolete operating systems | ||
will not be accepted. | ||
|
||
For GPU, reference `our GPU docs <gpu/index.html>`__. |