summaryrefslogtreecommitdiffstats
path: root/src/bootstrap/install.rs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/bootstrap/install.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/bootstrap/install.rs b/src/bootstrap/install.rs
index 38426f3a4..1815a0973 100644
--- a/src/bootstrap/install.rs
+++ b/src/bootstrap/install.rs
@@ -209,6 +209,12 @@ install!((self, builder, _config),
);
}
};
+ LlvmTools, alias = "llvm-tools", Self::should_build(_config), only_hosts: true, {
+ let tarball = builder
+ .ensure(dist::LlvmTools { target: self.target })
+ .expect("missing llvm-tools");
+ install_sh(builder, "llvm-tools", self.compiler.stage, Some(self.target), &tarball);
+ };
Rustfmt, alias = "rustfmt", Self::should_build(_config), only_hosts: true, {
if let Some(tarball) = builder.ensure(dist::Rustfmt {
compiler: self.compiler,