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
Yeah, this is poor UX, it affects docs too, and possibly libstds. It should be possible to install alternate targets by passing --target xyz to rustup component add rust-analysis
error: toolchain 'stable-i686-pc-windows-msvc' does not contain component 'rust-analysis-i686-pc-windows-msvc' for target 'i686-pc-windows-msvc'
Since the target is already known, why not just split the component name? Or if it is combined (full), do not make full name for such commands and leave it as rust-analysis, rust-src and so on.
rustup component list
shows a full name of components (like rust-analysis-i686-pc-windows-msvc, rust-std-aarch64-apple-ios and so on).But
rustup component add rust-analysis-i686-pc-windows-msvc
itself does not work:However it works with the short name:
rustup component add rust-analysis
.Full log:
(from: rust-lang/rls#262)
The text was updated successfully, but these errors were encountered: