diff options
| author | Trevor Gross <t.gross35@gmail.com> | 2024-07-18 05:14:09 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-18 05:14:09 -0500 |
| commit | 16d2b61335c33d7ef6db93ef533ebcca3991e4a2 (patch) | |
| tree | c62596a31c5c6fa8fdd541958183ef4e9b1ab6b1 /src | |
| parent | 73eba8e3b4bdd47d0531334e999a733dec4f3e40 (diff) | |
| parent | 69157bde3b309f99c4591fbfc93662ad75a611a2 (diff) | |
| download | rust-16d2b61335c33d7ef6db93ef533ebcca3991e4a2.tar.gz rust-16d2b61335c33d7ef6db93ef533ebcca3991e4a2.zip | |
Rollup merge of #127901 - Kobzol:llvm-bitcode-linker-gha-group, r=onur-ozkan
Add missing GHA group for building `llvm-bitcode-linker` Found while investigating https://github.com/rust-lang/rust/issues/127869. r? `@onur-ozkan`
Diffstat (limited to 'src')
| -rw-r--r-- | src/bootstrap/src/core/build_steps/tool.rs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/bootstrap/src/core/build_steps/tool.rs b/src/bootstrap/src/core/build_steps/tool.rs index 7bc410b9e88..2f8b41334fc 100644 --- a/src/bootstrap/src/core/build_steps/tool.rs +++ b/src/bootstrap/src/core/build_steps/tool.rs @@ -858,6 +858,15 @@ impl Step for LlvmBitcodeLinker { &self.extra_features, ); + let _guard = builder.msg_tool( + Kind::Build, + Mode::ToolRustc, + bin_name, + self.compiler.stage, + &self.compiler.host, + &self.target, + ); + cargo.into_cmd().run(builder); let tool_out = builder |
