-
Notifications
You must be signed in to change notification settings - Fork 150
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
rustc option "instrument-coverage" stabilized #790
Conversation
@kazuk it is not stable yet in the latest Rust version. We need to wait on 1.59. |
Once 1.59 is out, we can also remove mentions to RUSTC_BOOTSTRAP. |
My understanding, grcov requires "Nightly" Rust. |
It is possible to use stable rust (by setting the RUSTC_BOOTSTRAP environment variable). |
@kazuk Rust 1.60 is out with support for source-based coverage instrumentation. I think we can now merge this, but first we have to remove mentions to RUSTC_BOOTSTRAP. Could you update the PR? |
update using Nightly to Stable.
I update Usage line, and update "grcov with Travis" example. |
Co-authored-by: Marco Castelluccio <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!
then change
-Z
to-C
see: rust-lang/rust#90132