-
Notifications
You must be signed in to change notification settings - Fork 12.9k
New issue
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
Bootstrap: cargo-miri is called "cargomiri" for check builds #131592
Comments
I think this is just because cargo-miri's tool check step is generated through a macro
this macro generates the check message via
there's a rust/src/bootstrap/src/core/build_steps/tool.rs Line 1094 in fb20e4d
|
If I make the macro use a display name,
|
Ah, I didn't realize those two steps were defined entirely independently. |
Anyway, #131597 should make this more consistent. |
…bzol Take a display name for `tool_check_step!` The tool build step already takes a display name, make the tool check step also take a display name to better represent the tool name. I.e. instead of `src/tools/cargo-miri` becoming `cargomiri`, it now becomes `cargo-miri`. Fixes rust-lang#131592.
Rollup merge of rust-lang#131597 - jieyouxu:explicit-check-name, r=Kobzol Take a display name for `tool_check_step!` The tool build step already takes a display name, make the tool check step also take a display name to better represent the tool name. I.e. instead of `src/tools/cargo-miri` becoming `cargomiri`, it now becomes `cargo-miri`. Fixes rust-lang#131592.
When I do
./x.py check
, it says:Strangely, when I do
./x.py test miri
, it uses the correct name:No idea how it is even possible for this tool to have two different names inside bootstrap...
The text was updated successfully, but these errors were encountered: