You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
555 B
Plaintext

# rustup
# The Rust tool chain installer
# update rustup tool chain
rustup update
# install nightly build
rustup install nightly
# use rustc from nightly tool chain
rustup run nightly rustc --version
# switch to nightly installation
rustup default nightly
# List all available targets for the active tool chain
rustup target list
# Install the Android target
rustup target add arm-linux-androideabi
# Run a shell configured for the nightly compiler
rustup run nightly bash
# Show which tool chain will be used in the current directory
rustup show