Skip to content

Commit

Permalink
build: llvm_tools tidy
Browse files Browse the repository at this point in the history
  • Loading branch information
bradjc committed Jun 23, 2018
1 parent 739fe4b commit 5fc87eb
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
6 changes: 5 additions & 1 deletion src/bootstrap/dist.rs
Expand Up @@ -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),
Expand Down
3 changes: 2 additions & 1 deletion src/tools/build-manifest/src/main.rs
Expand Up @@ -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();
Expand Down

0 comments on commit 5fc87eb

Please sign in to comment.