mirror of
https://github.com/torvalds/linux.git
synced 2024-12-12 14:12:51 +00:00
e5e86572e3
The arch_support table was not sorted alphabetically.
Sorts the table properly.
Fixes: 0438aadfa6
("rust: arch/um: Add support for CONFIG_RUST under x86_64 UML")
Link: https://lore.kernel.org/rust-for-linux/CANiq72nXMsnUsJNZOG-QZiCVOqa9dRUSMc4RAS3ExLZNJ7VhHg@mail.gmail.com
Reported-by: Miguel Ojeda <miguel.ojeda.sandonis@gmail.com>
Signed-off-by: Thomas Bamelis <thomas@bamelis.dev>
Reviewed-by: David Gow <davidgow@google.com>
Signed-off-by: Miguel Ojeda <ojeda@kernel.org>
22 lines
896 B
ReStructuredText
22 lines
896 B
ReStructuredText
.. SPDX-License-Identifier: GPL-2.0
|
|
|
|
Arch Support
|
|
============
|
|
|
|
Currently, the Rust compiler (``rustc``) uses LLVM for code generation,
|
|
which limits the supported architectures that can be targeted. In addition,
|
|
support for building the kernel with LLVM/Clang varies (please see
|
|
Documentation/kbuild/llvm.rst). This support is needed for ``bindgen``
|
|
which uses ``libclang``.
|
|
|
|
Below is a general summary of architectures that currently work. Level of
|
|
support corresponds to ``S`` values in the ``MAINTAINERS`` file.
|
|
|
|
============ ================ ==============================================
|
|
Architecture Level of support Constraints
|
|
============ ================ ==============================================
|
|
``um`` Maintained ``x86_64`` only.
|
|
``x86`` Maintained ``x86_64`` only.
|
|
============ ================ ==============================================
|
|
|