rustup
for esp-rs
espup
is a tool for installing and maintaining the required toolchains for developing applications in Rust for Espressif SoC's.
To better understand what espup
installs, see Rust on ESP targets
chapter of The Rust on ESP Book
Before running or installing espup
, make sure that rustup
is installed. Linux systems also require the following packages:
- Ubuntu/Debian
sh
sudo apt-get install -y gcc build-essential curl pkg-config
- Fedora
sh
sudo dnf -y install perl gcc
- perl
is required to build openssl-sys
- openSUSE Thumbleweed/Leap
sudo zypper install -y gcc ninja make
sh
cargo install espup
It's also possible to use cargo-binstall or to directly download the pre-compiled release binaries:
- Linux aarch64
sh
curl -L https://github.com/esp-rs/espup/releases/latest/download/espup-aarch64-unknown-linux-gnu -o espup
chmod a+x espup
- Linux x8664
sh
curl -L https://github.com/esp-rs/espup/releases/latest/download/espup-x86_64-unknown-linux-gnu -o espup
chmod a+x espup
- macOS aarch64
sh
curl -L https://github.com/esp-rs/espup/releases/latest/download/espup-aarch64-apple-darwin -o espup
chmod a+x espup
- macOS x8664
sh
curl -L https://github.com/esp-rs/espup/releases/latest/download/espup-x86_64-apple-darwin -o espup
chmod a+x espup
- Windows MSVC
powershell
Invoke-WebRequest 'https://github.com/esp-rs/espup/releases/latest/download/espup-x86_64-pc-windows-msvc.exe' -OutFile .\espup.exe
See Usage section for more details.
espup completions <SHELL> > <PATH_TO_STORE_COMPLETION>/espup.<SHELL_EXTENSION>
```sh espup install
. $HOME/export-esp.sh
```
Warning
The generated export file, by default
export-esp
, needs to be sourced in every terminal in Unix systems before building an application. On Windows, environment variables are automatically injected into your system and don't need to be sourced.
sh
espup uninstall
sh
espup update
```
Usage: espup
Commands: completions Generate completions for the given shell install Installs Espressif Rust ecosystem uninstall Uninstalls Espressif Rust ecosystem update Updates Xtensa Rust toolchain help Print this message or the help of the given subcommand(s)
Options: -h, --help Print help -V, --version Print version ```
```
Usage: espup completions [OPTIONS]
Arguments:
Options:
-l, --log-level
Note
Xtensa Rust destination path
Installation paths can be modified by setting the environment variables
CARGO_HOME
andRUSTUP_HOME
before running theinstall
command. By default, toolchains will be installed under<rustup_home>/toolchains/esp
, although this can be changed using the-a/--name
option.
Note
GitHub API
During the installation, we do a few GitHub queries, which has some limits. Our number of queries should not hit the limits unless you are running
espup install
command numerous times in a short span of time. We recommend setting theGITHUB_TOKEN
environment variable when usingespup
in CI, if you want to useespup
on CI, recommend using it via thextensa-toolchain
action, and making sureGITHUB_TOKEN
is not set when using it on a host machine. See https://github.com/esp-rs/xtensa-toolchain/issues/15 for more details on this.
``` Usage: espup install [OPTIONS]
Options:
-d, --default-host
[possible values: x86_64-unknown-linux-gnu, aarch64-unknown-linux-gnu, x86_64-pc-windows-msvc, x86_64-pc-windows-gnu, x86_64-apple-darwin, aarch64-apple-darwin]
-f, --export-file
-e, --extended-llvm Extends the LLVM installation.
This will install the whole LLVM instead of only installing the libs.
-l, --log-level
[default: info]
[possible values: debug, info, warn, error]
-a, --name
[default: esp]
-n, --nightly-version
[default: nightly]
-s, --std Only install toolchains required for STD applications.
With this option, espup will skip GCC installation (it will be handled by esp-idf-sys), hence you won't be able to build no_std applications.
-t, --targets
[default: all]
-v, --toolchain-version
-h, --help Print help (see a summary with '-h')
-V, --version Print version ```
``` Usage: espup uninstall [OPTIONS]
Options:
-l, --log-level
``` Usage: espup update [OPTIONS]
Options:
-d, --default-host
Licensed under either of:
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.