Files

26 lines
1.1 KiB
ReStructuredText
Raw Permalink Normal View History

2021-07-03 17:23:16 +02:00
.. 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.
2024-01-17 12:43:00 +08:00
============= ================ ==============================================
Architecture Level of support Constraints
============= ================ ==============================================
``arm`` Maintained ARMv7 Little Endian only.
``arm64`` Maintained Little Endian only.
``loongarch`` Maintained \-
2024-10-01 12:28:13 +01:00
``riscv`` Maintained ``riscv64`` and LLVM/Clang only.
2024-06-05 06:40:50 +08:00
``um`` Maintained \-
2024-01-17 12:43:00 +08:00
``x86`` Maintained ``x86_64`` only.
============= ================ ==============================================
2023-02-13 15:59:20 +07:00