-
Notifications
You must be signed in to change notification settings - Fork 16
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
How to print (or reprint) all errors/warnings at the end? #61
Comments
@jordwalke Will bailing out early help? |
Yes but then you lose other benefits. It's generally good to compile everything as much as you can. And I like the incremental delivery of warnings and errors because I can begin investigating while the rest is compiled. But a nice repeated summary at the end would be nice. |
Jenga does. At least it has a flag. |
@chenglou Are you referring to |
I'm ok with not stopping on first error, as long as the output is at all readable :P |
Yeah, I like not stopping on the first error because while I'm debugging the first error, it can continue to build other unrelated things. Then when I fix the issue in the first error, it will compile the final executable faster. It's just that it's tough to spot the errors when they go flying by. |
I have a ton of log output while compiling and I saw some warnings go by quickly. Is there a way to get all the warnings to be printed at the end? (Or maybe just reprinted again)?
The text was updated successfully, but these errors were encountered: