diff --git a/blog/content/edition-3/posts/01-minimal-kernel/index.md b/blog/content/edition-3/posts/01-minimal-kernel/index.md index a3df1e9e..4b046385 100644 --- a/blog/content/edition-3/posts/01-minimal-kernel/index.md +++ b/blog/content/edition-3/posts/01-minimal-kernel/index.md @@ -314,10 +314,26 @@ For example, the `thumbv7em-none-eabihf` target triple can be used to compile fo Our kernel should run on a bare-metal `x86_64` system, so the suitable target triple is [`x86_64-unknown-none`]. The `-none` suffix indicates that there is no underlying operating system. -To be able to compile for this target, we need to add it using [`rustup`]: +To be able to compile for this target, we need to add it using [`rustup`]. [`x86_64-unknown-none`]: https://doc.rust-lang.org/rustc/platform-support/x86_64-unknown-none.html -[`rustup`]: https://doc.rust-lang.org/rustc/platform-support/x86_64-unknown-none.html + +
rustup?