Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 41a41cc

Browse files
authoredMar 12, 2025
Rollup merge of rust-lang#138390 - onur-ozkan:fix-invalid-tracing-log, r=jieyouxu
fix incorrect tracing log Previous information is not correct.
2 parents a72a5ef + cb26079 commit 41a41cc

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed
 

‎src/bootstrap/src/core/build_steps/compile.rs

+1-5
Original file line numberDiff line numberDiff line change
@@ -194,11 +194,7 @@ impl Step for Std {
194194
trace!(?compiler_to_use);
195195

196196
if compiler_to_use != compiler {
197-
trace!(
198-
?compiler_to_use,
199-
?compiler,
200-
"compiler != compiler_to_use, handling cross-compile scenario"
201-
);
197+
trace!(?compiler_to_use, ?compiler, "compiler != compiler_to_use, uplifting library");
202198

203199
builder.ensure(Std::new(compiler_to_use, target));
204200
let msg = if compiler_to_use.host == target {

0 commit comments

Comments
 (0)
Please sign in to comment.