slackbuilds_ponce/development/rustup
Andrew Clemons 12f551c8a7
development/rustup: Updated for version 1.14.0
Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com>
2018-10-21 06:46:47 +07:00
..
README
rustup.info development/rustup: Updated for version 1.14.0 2018-10-21 06:46:47 +07:00
rustup.SlackBuild development/rustup: Updated for version 1.14.0 2018-10-21 06:46:47 +07:00
slack-desc

rustup - The Rust toolchain installer

To use the versions of rust installed through rustup, you'll need to add links
to the rustup binary on your path before the system rust.

You are free to choose where, but here is an example for a single user:

mkdir -p $HOME/.rustup/shims
for lnk in cargo cargo-fmt rls rustc rustdoc rustfmt rust-gdb rust-lldb ; do
  (
    cd $HOME/.rustup/shims
    ln -s /usr/bin/rustup $lnk
  )
done

Then add the directory to your path (.bashrc for example):
export PATH="$HOME/.rustup/shims:$PATH"