Skip to content

Commit

Permalink
docs: Stable channel installation
Browse files Browse the repository at this point in the history
  • Loading branch information
SergioGasquez committed Aug 12, 2024
1 parent 1e0d74c commit 1ef8e70
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions book/src/02_2_software.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,11 @@ Follow the steps below for a default installation of the ESP32-C3 platform tooli

✅ If you haven't got Rust on your computer, obtain it via <https://rustup.rs/>

Furthermore, for ESP32-C3, a [*nightly* version](https://rust-lang.github.io/rustup/concepts/channels.html#working-with-nightly-rust) of the Rust toolchain is currently required, for this training we will use `nightly-2023-11-14` version.

✅ Install *nightly* Rust and add support for the target architecture using the following command:
✅ Install Rust *stable* channel, if you haven't already, and add support for the target architecture using the following command:

```console
rustup toolchain install nightly-2023-11-14 --component rust-src --target riscv32imc-unknown-none-elf
rustup toolchain install stable --component rust-src --target riscv32imc-unknown-none-elf
```

🔎 Rust is capable of cross-compiling to any supported target (see `rustup target list`). By default, only the native architecture of your system is installed.
Expand Down

0 comments on commit 1ef8e70

Please sign in to comment.