We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8502e99 + 874d55c commit fd67755Copy full SHA for fd67755
src/bootstrap/src/core/builder.rs
@@ -2014,6 +2014,11 @@ impl<'a> Builder<'a> {
2014
cargo.env("RUSTC_BACKTRACE_ON_ICE", "1");
2015
}
2016
2017
+ if self.is_verbose() {
2018
+ // This provides very useful logs especially when debugging build cache-related stuff.
2019
+ cargo.env("CARGO_LOG", "cargo::core::compiler::fingerprint=info");
2020
+ }
2021
+
2022
cargo.env("RUSTC_VERBOSE", self.verbosity.to_string());
2023
2024
// Downstream forks of the Rust compiler might want to use a custom libc to add support for
0 commit comments