You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ rustup toolchain link stage1 build/x86_64-pc-windows-gnu/stage1
$ echo $?
0
$ rustup default stage1
info: no toolchain installed for 'stage1'
$ rustup toolchain list
nightly-x86_64-pc-windows-gnu (default)
stage1
$ rustup toolchain remove stage1
info: no toolchain installed for 'stage1'
I think this is because the toolchain subcommand has special logic on Windows because one can pick between two toolchains: mingw and msvc (I think the logic implicitly appends a triple to the toolchain or something like that). Perhaps, that special logic shouldn't be used for custom toolchains.
I think this is because the toolchain subcommand has special logic on Windows because one can pick between two toolchains: mingw and msvc (I think the logic implicitly appends a triple to the toolchain or something like that). Perhaps, that special logic shouldn't be used for custom toolchains.
cc @brson
The text was updated successfully, but these errors were encountered: