web-dev-qa-db-fra.com

Comment basculer entre Rust Toolchains?

rustup help toolchain répertorie les sous-commandes suivantes

SUBCOMMANDS:
    list         List installed toolchains
    install      Install or update a given toolchain
    uninstall    Uninstall a toolchain
    link         Create a custom toolchain by symlinking to a directory
    help         Prints this message or the help of the given subcommand(s)

J'ai les Toolchains suivants installé

stable-x86_64-unknown-linux-gnu (default)
nightly-2019-09-05-x86_64-unknown-linux-gnu
nightly-x86_64-unknown-linux-gnu
master

J'essayais de résoudre un problème pour Rust-Clippy, j'ai donc dû installer la machine à outils maîtresse. Même si Stable est défini comme mon boîte à outils par défaut, ma boîte à outils actuelle est maître et j'aimerais revenir à Stable. Comment puis-je le faire sans désinstaller la compagnie d'outils principale?

N'y a-t-il pas de sous-commande Switch?

17
Palash Nigam

Utilisation rustup default <toolchain> Pour changer la boîte à outils par défaut. Vous pouvez utiliser le nom complet (par ex. rustup default stable-x86_64-unknown-linux-gnu) ou un court alias (par exemple rustup default stable).

rustup a également des méthodes pour remplacer la valeur par défaut de manière plus spécifiée. Voir Supprimer la priorité Dans Rustup's Readme.

3
Francis Gagné