rustup set default-host
does not change the default toolchain
#3651
Labels
Milestone
rustup set default-host
does not change the default toolchain
#3651
Problem you are trying to solve
i have a
stable-x86_64-pc-windows-gnu
toolchain as my default:i want it to be
-msvc
instead so i can use windbg (i don't have gdb installed). i ranrustup set default-host x86_64-pc-windows-msvc
, which succeeded, but did not install any toolchains or change the default:then i tried
rustup update stable
, which did install the -msvc toolchain, but did not change the default:Solution you'd like
rustup set default-host foo
should behave the same asrustup set default-host foo && rustup default $channel-foo
, where$channel
is the channel of the current default toolchain.ideally, rustup would give a warning if the default toolchain did not match the default host (e.g.
rustup default nightly-x86_64-pc-windows-gnu
with a default-host ofmsvc
).Notes
rustup 1.26.0 (5af9b94 2023-04-05)
The text was updated successfully, but these errors were encountered: