-
Notifications
You must be signed in to change notification settings - Fork 2.5k
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
Add release and debug target indicators #2896
Conversation
Thanks for the pull request, and welcome! The Rust team is excited to review your changes, and you should hear from @alexcrichton (or someone else) soon. If any changes to this PR are deemed necessary, please add them as extra commits. This ensures that the reviewer can see what has changed since they last reviewed the code. Due to the way GitHub handles out-of-date commits, this should also make it reasonably obvious what issues have or haven't been addressed. Large or tricky changes may require several passes of review and changes. Please see the contribution instructions for more information. |
cc @rust-lang/tools, thoughts on this? I personally think that because this is still coming up it's worth doing something, and the modification to the output here should be quite un-invasive. |
+1 |
I like the idea of putting the target (or profile or whatever this is) into the output to give people a clue they are not optimizing, but with this implementation it will print redundantly for each crate, since it's a global setting. Unfortunately there are no other status lines to tack it onto. We could output a new line just dedicated to communicating dynamic configuration properties (maybe there are others), like |
I'd be fine with @brson's fix also, assuming we're okay with adding an extra line to the build output. |
On second thought, we might want to consider that being more "in your face" like this PR does might help prevent the error we're trying to avoid better than having a line that they may miss if it scrolls off the screen building dependencies... |
I do kinda like that a noop For a comparison, here's what this would look like with a few deps:
vs
The latter to me doesn't look so bad, but I don't really mind so long as we fit it in somewhere. Also one thing we may want to keep in mind is that if we print out the build type at the top then it's likely to get lost in a project like servo which has tons of deps. |
I'm definitely in favor of the general idea; and I also think that this specific implementation where the |
Yeah, printing critical info first isn't so great because it will scroll off screen. |
Alex's example looks fine to me. |
It might be worth having "Debug (unoptimized+debuginfo)" at least once, to make it painfully obvious that optimizations aren't enabled. |
we could, in theory, print it just on your own crate. Then you'd have something like
Messes up the symmetry a bit though :/ |
@steveklabnik - yeah, @wycats mentioned that as a possibility as well. I'm not a fan, yeah, for the symmetry, but it also kinda begs the question "what are the deps being built with?" Are they release and only mine is (debug), which is why it's specifically called out? |
Another possibility (which I believe solves @eddyb's concern as well) is that we could print one line at the end of a build along the lines of:
That way we can add extra information like how many crates were built, how long the build took, etc |
I'm much, much, much more comfortable with one line at the end describing the build than adding a bit of extra info to every line. At some point, that extra info gets tuned out and just adds noise. |
I'm ok with that as well, @jonathandturner do you want to update with that on this PR? |
@alexcrichton - yeah, alternate PR on #2909. If that works, I can close this one. |
Closing in favor of #2909, I think we're gonna take the strategy there |
…crichton Switch to output release/debug after compile This is similar to #2896 but instead of inline, it puts an indicator at the bottom showing if it was a release or debug build. ``` jturner-23759:cargo jturner$ ./target/release/cargo build Finished debug (unoptimized + debuginfo) build. jturner-23759:cargo jturner$ ./target/release/cargo build --release Finished release (optimized) build. ```
This resurrects #1374 and implements an indicator of whether the current build is a release or debug. This should help avoid issues like
https://www.reddit.com/r/rust/comments/4tikmf/why_is_my_forth_virtual_machine_written_in_rust/
Specifically, this change includes the target indicator, as @alexcrichton mentions in the original PR:
r? @alexcrichton