Replies: 2 comments 6 replies
-
Have you been using let installed_toolchains = rustup::installed_toolchains(msg_info)?;
if !installed_toolchains
.into_iter()
.any(|t| t == toolchain.to_string())
{
rustup::install_toolchain(&toolchain, msg_info)?;
} Toggling that line to only work if $ rustup toolchain link --help
rustup-toolchain-link
Create a custom toolchain by symlinking to a directory
USAGE:
rustup toolchain link <toolchain> <path> This way, you can still change Rust toolchains easily while also being able to use custom builds. This way, the linked toolchain would also be available in |
Beta Was this translation helpful? Give feedback.
-
0.2.5 broke this again. #1085 has fixed it, but it fails again using the new release. Using the original commit I use:
However, using 0.2.5 it fails with:
|
Beta Was this translation helpful? Give feedback.
-
Hello,
I am trying to use a custom toolchain with
cross
but couldn't find a way to do so. I get:Looking at the source, it seems something like this is used on
rustc
bisect, but I couldn't make it work. Any suggestion?Beta Was this translation helpful? Give feedback.
All reactions