You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When compilation terminates with an error, the progress bar is partially overwritten. Perhaps there is a missing \n that needs to be output before the first error?
Sample error:
$ cargo +nightly check Checking x86_64 v0.2.4 (file:///home/mark/Documents/home/x86_64) error[E0573]: expected type, found module `self`==============> ] 5/6: x86_64 --> src/structures/paging/recursive.rs:354:14 |354 | &mut self, | ^^^^ did you mean `Self`?
Notice this part: ==============> ] 5/6: x86_64. This is the progress bar (I'm compiling the x86_64 crate), which is overwritten by the first error.
Fully capture rustc and rustdoc output when -Zcompile-progress is passed
Fixes#5764 and #5695.
On Windows, we will parse the ANSI escape code into console commands via my `fwdansi` package, based on @ishitatsuyuki's idea in #5695 (comment). Outside of Windows the content is forwarded as-is.
cc #3448, #2536
When compilation terminates with an error, the progress bar is partially overwritten. Perhaps there is a missing
\n
that needs to be output before the first error?Sample error:
Notice this part:
==============> ] 5/6: x86_64
. This is the progress bar (I'm compiling the x86_64 crate), which is overwritten by the first error.The text was updated successfully, but these errors were encountered: