From 31969399d51c03d5b0a7b391a5b73c9e12e4cd84 Mon Sep 17 00:00:00 2001 From: SSD <96286755+the-ssd@users.noreply.github.com> Date: Mon, 5 Jan 2026 10:06:26 +0100 Subject: [PATCH 1/2] Add llvm-tools component to rust-toolchain --- examples/basic/rust-toolchain.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/basic/rust-toolchain.toml b/examples/basic/rust-toolchain.toml index a306d5fe..1d274248 100644 --- a/examples/basic/rust-toolchain.toml +++ b/examples/basic/rust-toolchain.toml @@ -1,4 +1,4 @@ [toolchain] channel = "nightly" -components = ["rustfmt", "clippy"] +components = ["rustfmt", "clippy", "llvm-tools"] targets = ["x86_64-unknown-none"] From 130e30bcc60bcd0ba935b8f2b17dd69eafc0f023 Mon Sep 17 00:00:00 2001 From: SSD <96286755+the-ssd@users.noreply.github.com> Date: Mon, 5 Jan 2026 10:08:28 +0100 Subject: [PATCH 2/2] Update rust-toolchain.toml to include llvm-tools Add llvm-tools component to rust-toolchain.toml --- examples/basic/basic-os.md | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/basic/basic-os.md b/examples/basic/basic-os.md index 9e74dcbe..e24bb437 100644 --- a/examples/basic/basic-os.md +++ b/examples/basic/basic-os.md @@ -28,6 +28,7 @@ The top level `basic` crate defines a [workspace](https://doc.rust-lang.org/carg # rust-toolchain.toml [toolchain] channel = "nightly" + components = ["llvm-tools"] targets = ["x86_64-unknown-none"] ```