Skip to content

Commit deaa241

Browse files
committed
docs: rust: arch-support: use simple table
reST's list tables are quite hard to read when inspecting the source of the documents. There are other 3 ways to create tables in reST: grids tables, CSV tables and simple tables. Plus, of course, the "manual" way of using a code block with custom formatting. Use simple tables since they are lightweight and we do not need the features of the more complex tables. Suggested-by: Akira Yokosawa <[email protected]> Suggested-by: Jonathan Corbet <[email protected]> Signed-off-by: Miguel Ojeda <[email protected]>
1 parent ec24f3d commit deaa241

File tree

1 file changed

+11
-22
lines changed

1 file changed

+11
-22
lines changed

Documentation/rust/arch-support.rst

Lines changed: 11 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -12,25 +12,14 @@ which uses ``libclang``.
1212
Below is a general summary of architectures that currently work. Level of
1313
support corresponds to ``S`` values in the ``MAINTAINERS`` file.
1414

15-
.. list-table::
16-
:widths: 10 10 10
17-
:header-rows: 1
18-
19-
* - Architecture
20-
- Level of support
21-
- Constraints
22-
* - ``arm``
23-
- Maintained
24-
- ``armv6`` and compatible only, ``RUST_OPT_LEVEL >= 2``
25-
* - ``arm64``
26-
- Maintained
27-
- None
28-
* - ``powerpc``
29-
- Maintained
30-
- ``ppc64le`` only, ``RUST_OPT_LEVEL < 2`` requires ``CONFIG_THREAD_SHIFT=15``
31-
* - ``riscv``
32-
- Maintained
33-
- ``riscv64`` only
34-
* - ``x86``
35-
- Maintained
36-
- ``x86_64`` only
15+
============ ================ ==============================================
16+
Architecture Level of support Constraints
17+
============ ================ ==============================================
18+
``arm`` Maintained ``armv6`` and compatible only,
19+
``RUST_OPT_LEVEL >= 2``.
20+
``arm64`` Maintained None.
21+
``powerpc`` Maintained ``ppc64le`` only, ``RUST_OPT_LEVEL < 2``
22+
requires ``CONFIG_THREAD_SHIFT=15``.
23+
``riscv`` Maintained ``riscv64`` only.
24+
``x86`` Maintained ``x86_64`` only.
25+
============ ================ ==============================================

0 commit comments

Comments
 (0)