-
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
Improve "Building compiler artifacts" output #108051
Comments
@rustbot claim |
@jyn514 How's?
There isn't an associated |
This is a good start, thanks! I have a few comments:
|
Added your suggestions
|
That looks great! The last thing I would do is
|
At least for the actual function in
|
That looks amazing, thank you! |
Latest output
|
…ut, r=jyn514 Improve building compiler artifacts output Fixes rust-lang#108051 `@Manishearth,` `@jyn514` mentioned you might be interested in these changes to the outputs.
Right, now
x build --dry-run
outputs something like this:There are a few things here that are not ideal.
x86_64-apple-darwin -> x86_64-apple-darwin
doesn't give a lot of info and is very noisy. We should only print it when the host and target are different.I'd like to change this to something like
Building compiler artifacts (stage0 -> stage1)
when the target/host are the same andBuilding compiler artifacts (stage0: x86_64-apple-darwin -> stage1: x86_64-unknown-linux-gnu)
when they're different.The text was updated successfully, but these errors were encountered: