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"] ``` 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"]