Skip to content

Commit 7fb232a

Browse files
committed
enable compiler fingerprint logs in verbose mode
Signed-off-by: onur-ozkan <[email protected]>
1 parent 612796c commit 7fb232a

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/bootstrap/src/core/builder.rs

+4
Original file line numberDiff line numberDiff line change
@@ -2012,6 +2012,10 @@ impl<'a> Builder<'a> {
20122012
cargo.env("RUSTC_BACKTRACE_ON_ICE", "1");
20132013
}
20142014

2015+
if self.is_verbose() {
2016+
cargo.env("CARGO_LOG", "cargo::core::compiler::fingerprint=info");
2017+
}
2018+
20152019
cargo.env("RUSTC_VERBOSE", self.verbosity.to_string());
20162020

20172021
// Downstream forks of the Rust compiler might want to use a custom libc to add support for

0 commit comments

Comments
 (0)