build: llvm_tools tidy
This commit is contained in:
parent
739fe4b3c5
commit
5fc87ebbba
2 changed files with 7 additions and 2 deletions
|
|
@ -1303,7 +1303,11 @@ impl Step for Extended {
|
|||
let cargo_installer = builder.ensure(Cargo { stage, target });
|
||||
let rustfmt_installer = builder.ensure(Rustfmt { stage, target });
|
||||
let rls_installer = builder.ensure(Rls { stage, target });
|
||||
let llvm_tools_installer = builder.ensure(LlvmTools { stage, target, compiler: builder.compiler(stage, target) });
|
||||
let llvm_tools_installer = builder.ensure(LlvmTools {
|
||||
stage,
|
||||
target,
|
||||
compiler: builder.compiler(stage, target)
|
||||
});
|
||||
let mingw_installer = builder.ensure(Mingw { host: target });
|
||||
let analysis_installer = builder.ensure(Analysis {
|
||||
compiler: builder.compiler(stage, self.host),
|
||||
|
|
|
|||
|
|
@ -260,7 +260,8 @@ impl Builder {
|
|||
self.cargo_git_commit_hash = self.git_commit_hash("cargo", "x86_64-unknown-linux-gnu");
|
||||
self.rls_git_commit_hash = self.git_commit_hash("rls", "x86_64-unknown-linux-gnu");
|
||||
self.rustfmt_git_commit_hash = self.git_commit_hash("rustfmt", "x86_64-unknown-linux-gnu");
|
||||
self.llvm_tools_git_commit_hash = self.git_commit_hash("llvm-tools", "x86_64-unknown-linux-gnu");
|
||||
self.llvm_tools_git_commit_hash = self.git_commit_hash("llvm-tools",
|
||||
"x86_64-unknown-linux-gnu");
|
||||
|
||||
self.digest_and_sign();
|
||||
let manifest = self.build_manifest();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue