We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 344800b commit 52d0743Copy full SHA for 52d0743
src/bootstrap/src/core/build_steps/tool.rs
@@ -169,6 +169,10 @@ pub fn prepare_tool_cargo(
169
// useful.
170
// This is only performed for non-incremental builds, as ccache cannot deal with these.
171
if let Some(ref ccache) = builder.config.ccache {
172
+ eprintln!(
173
+ "TOOL SCCACHE CONFIGURED at {}, mode: {:?}, incremental: {}",
174
+ ccache, mode, builder.config.incremental
175
+ );
176
if matches!(mode, Mode::ToolBootstrap) && !builder.config.incremental {
177
cargo.env("RUSTC_WRAPPER", ccache);
178
}
0 commit comments