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