Skip to content

Commit 5fc87eb

Browse files
committed
build: llvm_tools tidy
1 parent 739fe4b commit 5fc87eb

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

src/bootstrap/dist.rs

+5-1
Original file line numberDiff line numberDiff line change
@@ -1303,7 +1303,11 @@ impl Step for Extended {
13031303
let cargo_installer = builder.ensure(Cargo { stage, target });
13041304
let rustfmt_installer = builder.ensure(Rustfmt { stage, target });
13051305
let rls_installer = builder.ensure(Rls { stage, target });
1306-
let llvm_tools_installer = builder.ensure(LlvmTools { stage, target, compiler: builder.compiler(stage, target) });
1306+
let llvm_tools_installer = builder.ensure(LlvmTools {
1307+
stage,
1308+
target,
1309+
compiler: builder.compiler(stage, target)
1310+
});
13071311
let mingw_installer = builder.ensure(Mingw { host: target });
13081312
let analysis_installer = builder.ensure(Analysis {
13091313
compiler: builder.compiler(stage, self.host),

src/tools/build-manifest/src/main.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,8 @@ impl Builder {
260260
self.cargo_git_commit_hash = self.git_commit_hash("cargo", "x86_64-unknown-linux-gnu");
261261
self.rls_git_commit_hash = self.git_commit_hash("rls", "x86_64-unknown-linux-gnu");
262262
self.rustfmt_git_commit_hash = self.git_commit_hash("rustfmt", "x86_64-unknown-linux-gnu");
263-
self.llvm_tools_git_commit_hash = self.git_commit_hash("llvm-tools", "x86_64-unknown-linux-gnu");
263+
self.llvm_tools_git_commit_hash = self.git_commit_hash("llvm-tools",
264+
"x86_64-unknown-linux-gnu");
264265

265266
self.digest_and_sign();
266267
let manifest = self.build_manifest();

0 commit comments

Comments
 (0)