1 .. SPDX-License-Identifier: GPL-2.0
6 This document describes how to get started with kernel development in Rust.
8 There are a few ways to install a Rust toolchain needed for kernel development.
9 A simple way is to use the packages from your Linux distribution if they are
10 suitable -- the first section below explains this approach. An advantage of this
11 approach is that, typically, the distribution will match the LLVM used by Rust
14 Another way is using the prebuilt stable versions of LLVM+Rust provided on
15 `kernel.org <https://kernel.org/pub/tools/llvm/rust/>`_. These are the same slim
16 and fast LLVM toolchains from :ref:`Getting LLVM <getting_llvm>` with versions
17 of Rust added to them that Rust for Linux supports. Two sets are provided: the
18 "latest LLVM" and "matching LLVM" (please see the link for more information).
20 Alternatively, the next two "Requirements" sections explain each component and
21 how to install them through ``rustup``, the standalone installers from Rust
24 The rest of the document explains other aspects on how to get started.
33 Arch Linux provides recent Rust releases and thus it should generally work out
36 pacman -S rust rust-src rust-bindgen
42 Debian Unstable (Sid), outside of the freeze period, provides recent Rust
43 releases and thus it should generally work out of the box, e.g.::
45 apt install rustc rust-src bindgen rustfmt rust-clippy
51 Fedora Linux provides recent Rust releases and thus it should generally work out
54 dnf install rust rust-src bindgen-cli rustfmt clippy
60 Gentoo Linux (and especially the testing branch) provides recent Rust releases
61 and thus it should generally work out of the box, e.g.::
63 USE='rust-src rustfmt clippy' emerge dev-lang/rust dev-util/bindgen
65 ``LIBCLANG_PATH`` may need to be set.
71 Nix (unstable channel) provides recent Rust releases and thus it should
72 generally work out of the box, e.g.::
74 { pkgs ? import <nixpkgs> {} }:
76 nativeBuildInputs = with pkgs; [ rustc rust-bindgen rustfmt clippy ];
77 RUST_LIB_SRC = "${pkgs.rust.packages.stable.rustPlatform.rustLibSrc}";
84 openSUSE Slowroll and openSUSE Tumbleweed provide recent Rust releases and thus
85 they should generally work out of the box, e.g.::
87 zypper install rust rust1.79-src rust-bindgen clang
90 Requirements: Building
91 ----------------------
93 This section explains how to fetch the tools needed for building.
95 To easily check whether the requirements are met, the following target
98 make LLVM=1 rustavailable
100 This triggers the same logic used by Kconfig to determine whether
101 ``RUST_IS_AVAILABLE`` should be enabled; but it also explains why not
108 A recent version of the Rust compiler is required.
110 If ``rustup`` is being used, enter the kernel build directory (or use
111 ``--path=<build-dir>`` argument to the ``set`` sub-command) and run,
114 rustup override set stable
116 This will configure your working directory to use the given version of
117 ``rustc`` without affecting your default toolchain.
119 Note that the override applies to the current working directory (and its
122 If you are not using ``rustup``, fetch a standalone installer from:
124 https://forge.rust-lang.org/infra/other-installation-methods.html#standalone
127 Rust standard library source
128 ****************************
130 The Rust standard library source is required because the build system will
131 cross-compile ``core`` and ``alloc``.
133 If ``rustup`` is being used, run::
135 rustup component add rust-src
137 The components are installed per toolchain, thus upgrading the Rust compiler
138 version later on requires re-adding the component.
140 Otherwise, if a standalone installer is used, the Rust source tree may be
141 downloaded into the toolchain's installation folder::
143 curl -L "https://static.rust-lang.org/dist/rust-src-$(rustc --version | cut -d' ' -f2).tar.gz" |
144 tar -xzf - -C "$(rustc --print sysroot)/lib" \
145 "rust-src-$(rustc --version | cut -d' ' -f2)/rust-src/lib/" \
148 In this case, upgrading the Rust compiler version later on requires manually
149 updating the source tree (this can be done by removing ``$(rustc --print
150 sysroot)/lib/rustlib/src/rust`` then rerunning the above command).
156 ``libclang`` (part of LLVM) is used by ``bindgen`` to understand the C code
157 in the kernel, which means LLVM needs to be installed; like when the kernel
158 is compiled with ``LLVM=1``.
160 Linux distributions are likely to have a suitable one available, so it is
161 best to check that first.
163 There are also some binaries for several systems and architectures uploaded at:
165 https://releases.llvm.org/download.html
167 Otherwise, building LLVM takes quite a while, but it is not a complex process:
169 https://llvm.org/docs/GettingStarted.html#getting-the-source-code-and-building-llvm
171 Please see Documentation/kbuild/llvm.rst for more information and further ways
172 to fetch pre-built releases and distribution packages.
178 The bindings to the C side of the kernel are generated at build time using
179 the ``bindgen`` tool.
181 Install it, for instance, via (note that this will download and build the tool
184 cargo install --locked bindgen-cli
186 ``bindgen`` uses the ``clang-sys`` crate to find a suitable ``libclang`` (which
187 may be linked statically, dynamically or loaded at runtime). By default, the
188 ``cargo`` command above will produce a ``bindgen`` binary that will load
189 ``libclang`` at runtime. If it is not found (or a different ``libclang`` than
190 the one found should be used), the process can be tweaked, e.g. by using the
191 ``LIBCLANG_PATH`` environment variable. For details, please see ``clang-sys``'s
194 https://github.com/KyleMayes/clang-sys#linking
196 https://github.com/KyleMayes/clang-sys#environment-variables
199 Requirements: Developing
200 ------------------------
202 This section explains how to fetch the tools needed for developing. That is,
203 they are not needed when just building the kernel.
209 The ``rustfmt`` tool is used to automatically format all the Rust kernel code,
210 including the generated C bindings (for details, please see
211 coding-guidelines.rst).
213 If ``rustup`` is being used, its ``default`` profile already installs the tool,
214 thus nothing needs to be done. If another profile is being used, the component
215 can be installed manually::
217 rustup component add rustfmt
219 The standalone installers also come with ``rustfmt``.
225 ``clippy`` is a Rust linter. Running it provides extra warnings for Rust code.
226 It can be run by passing ``CLIPPY=1`` to ``make`` (for details, please see
227 general-information.rst).
229 If ``rustup`` is being used, its ``default`` profile already installs the tool,
230 thus nothing needs to be done. If another profile is being used, the component
231 can be installed manually::
233 rustup component add clippy
235 The standalone installers also come with ``clippy``.
241 ``rustdoc`` is the documentation tool for Rust. It generates pretty HTML
242 documentation for Rust code (for details, please see
243 general-information.rst).
245 ``rustdoc`` is also used to test the examples provided in documented Rust code
246 (called doctests or documentation tests). The ``rusttest`` Make target uses
249 If ``rustup`` is being used, all the profiles already install the tool,
250 thus nothing needs to be done.
252 The standalone installers also come with ``rustdoc``.
258 The `rust-analyzer <https://rust-analyzer.github.io/>`_ language server can
259 be used with many editors to enable syntax highlighting, completion, go to
260 definition, and other features.
262 ``rust-analyzer`` needs a configuration file, ``rust-project.json``, which
263 can be generated by the ``rust-analyzer`` Make target::
265 make LLVM=1 rust-analyzer
271 ``Rust support`` (``CONFIG_RUST``) needs to be enabled in the ``General setup``
272 menu. The option is only shown if a suitable Rust toolchain is found (see
273 above), as long as the other requirements are met. In turn, this will make
274 visible the rest of options that depend on Rust.
279 -> Sample kernel code
282 And enable some sample modules either as built-in or as loadable.
288 Building a kernel with a complete LLVM toolchain is the best supported setup
289 at the moment. That is::
293 Using GCC also works for some configurations, but it is very experimental at
300 To dive deeper, take a look at the source code of the samples
301 at ``samples/rust/``, the Rust support code under ``rust/`` and
302 the ``Rust hacking`` menu under ``Kernel hacking``.
304 If GDB/Binutils is used and Rust symbols are not getting demangled, the reason
305 is the toolchain does not support Rust's new v0 mangling scheme yet.
306 There are a few ways out:
308 - Install a newer release (GDB >= 10.2, Binutils >= 2.36).
310 - Some versions of GDB (e.g. vanilla GDB 10.1) are able to use
311 the pre-demangled names embedded in the debug info (``CONFIG_DEBUG_INFO``).