about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJakub Beránek <berykubik@gmail.com>2025-02-21 08:28:42 +0100
committerJakub Beránek <berykubik@gmail.com>2025-02-21 08:28:42 +0100
commit7312747f67996b75c35bfb776c124d94d5720a8d (patch)
tree9c87f104d048bbee95c32cef2b136e41c1d06490
parentc62239aeb3ba7781a6d7f7055523c1e8c22b409c (diff)
Add build step log for `run-make-support`
I was always confused about what is being built, since nothing was printed in the log :)
-rw-r--r--src/bootstrap/src/core/build_steps/test.rs8
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 b3f4a7bad99..16f5d2c5e3f 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";