build: llvm_tools tidy

This commit is contained in:
Brad Campbell 2018-06-23 12:34:18 -04:00
parent 739fe4b3c5
commit 5fc87ebbba
No known key found for this signature in database
GPG key ID: 193B81D32F71325A
2 changed files with 7 additions and 2 deletions

View file

@ -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),

View file

@ -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();