Skip to content

Commit 5096443

Browse files
authored
Unrolled build for rust-lang#138390
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 aaa2d47 + cb26079 commit 5096443

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)