diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2025-02-22 11:36:44 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-02-22 11:36:44 +0100 |
| commit | b0286b5c21cd5ea11cd8a9d93e92a8f3df8c1959 (patch) | |
| tree | a74348e4cff2ac661d6824bf719f53ab5a7cd6c9 | |
| parent | 72e41e5d650a392914a6faa56b81072a2fe16ea2 (diff) | |
| parent | 7312747f67996b75c35bfb776c124d94d5720a8d (diff) | |
| download | rust-b0286b5c21cd5ea11cd8a9d93e92a8f3df8c1959.tar.gz rust-b0286b5c21cd5ea11cd8a9d93e92a8f3df8c1959.zip | |
Rollup merge of #137362 - Kobzol:run-make-support-bootstrap, r=jieyouxu
Add build step log for `run-make-support` I was always confused about what is being built, since nothing was printed in the log :) r? ``@jieyouxu``
| -rw-r--r-- | src/bootstrap/src/core/build_steps/test.rs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/bootstrap/src/core/build_steps/test.rs b/src/bootstrap/src/core/build_steps/test.rs index 5fc3e8469bb..299decd0883 100644 --- a/src/bootstrap/src/core/build_steps/test.rs +++ b/src/bootstrap/src/core/build_steps/test.rs @@ -1234,6 +1234,14 @@ impl Step for RunMakeSupport { &[], ); + let _guard = builder.msg_tool( + Kind::Build, + Mode::ToolStd, + "run-make-support", + self.compiler.stage, + &self.compiler.host, + &self.target, + ); cargo.into_cmd().run(builder); let lib_name = "librun_make_support.rlib"; |
