We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When running commands like rustup show an unexplained message is printed to console:
rustup show
Official(ToolchainDesc { channel: "stable", date: None, target: TargetTriple("x86_64-pc-windows-msvc") }) [Official(ToolchainDesc { channel: "stable", date: None, target: TargetTriple("x86_64-pc-windows-gnu") }), Official(ToolchainDesc { channel: "stable", date: None, target: TargetTriple("x86_64-pc-windows-msvc") }), Official(ToolchainDesc { channel: "nightly", date: None, target: TargetTriple("x86_64-pc-windows-gnu") }), Official(ToolchainDesc { channel: "nightly", date: None, target: TargetTriple("x86_64-pc-windows-msvc") })]
This also happens when using cargo
[toolchain] channel = "stable-x86_64-pc-windows-msvc"
where the channel listed contains a host triple and is an installed toolchain
I think the print is here:
rustup/src/config.rs
Line 594 in 1c612cf
Probably should print some more context
No response
rustup 1.27.0 (bbb9276d2 2024-03-08) info: This is the version for the rustup toolchain manager, not the rustc compiler. Official(ToolchainDesc { channel: "stable", date: None, target: TargetTriple("x86_64-pc-windows-msvc") }) [Official(ToolchainDesc { channel: "stable", date: None, target: TargetTriple("x86_64-pc-windows-gnu") }), Official(ToolchainDesc { channel: "stable", date: None, target: TargetTriple("x86_64-pc-windows-msvc") }), Official(ToolchainDesc { channel: "nightly", date: None, target: TargetTriple("x86_64-pc-windows-gnu") }), Official(ToolchainDesc { channel: "nightly", date: None, target: TargetTriple("x86_64-pc-windows-msvc") })] info: The currently active `rustc` version is `rustc 1.77.0 (aedd173a2 2024-03-17)`
Default host: x86_64-pc-windows-gnu rustup home: C:\Users\Matthew\.rustup Official(ToolchainDesc { channel: "stable", date: None, target: TargetTriple("x86_64-pc-windows-msvc") }) [Official(ToolchainDesc { channel: "stable", date: None, target: TargetTriple("x86_64-pc-windows-gnu") }), Official(ToolchainDesc { channel: "stable", date: None, target: TargetTriple("x86_64-pc-windows-msvc") }), Official(ToolchainDesc { channel: "nightly", date: None, target: TargetTriple("x86_64-pc-windows-gnu") }), Official(ToolchainDesc { channel: "nightly", date: None, target: TargetTriple("x86_64-pc-windows-msvc") })] installed toolchains -------------------- stable-x86_64-pc-windows-gnu (default) stable-x86_64-pc-windows-msvc nightly-x86_64-pc-windows-gnu nightly-x86_64-pc-windows-msvc active toolchain ---------------- stable-x86_64-pc-windows-msvc (overridden by 'C:\Users\Matthew\RustroverProjects\fine_zoom_2\rust-toolchain.toml') rustc 1.77.0 (aedd173a2 2024-03-17)
The text was updated successfully, but these errors were encountered:
@rbtcollins did you happen to forget deleting this after print debugging?
Sorry, something went wrong.
Can probably just do a PR for this, seems highly likely that that is the case.
Successfully merging a pull request may close this issue.
Problem
When running commands like
rustup show
an unexplained message is printed to console:This also happens when using cargo
Steps
where the channel listed contains a host triple and is an installed toolchain
Possible Solution(s)
I think the print is here:
rustup/src/config.rs
Line 594 in 1c612cf
Probably should print some more context
Notes
No response
Rustup version
Installed toolchains
The text was updated successfully, but these errors were encountered: