diff options
| author | Marc-Antoine Perennou <Marc-Antoine@Perennou.com> | 2017-04-28 10:48:49 +0200 |
|---|---|---|
| committer | Marc-Antoine Perennou <Marc-Antoine@Perennou.com> | 2017-04-28 10:48:49 +0200 |
| commit | a8c6ba9c6eff834721e0c775de975b8741431fd0 (patch) | |
| tree | eb2a920c4a29f8b7daf30c55ceb46f9267c9b106 | |
| parent | 7b1fb8964119e01899869d8a2e74896f82ae4be4 (diff) | |
| download | rust-a8c6ba9c6eff834721e0c775de975b8741431fd0.tar.gz rust-a8c6ba9c6eff834721e0c775de975b8741431fd0.zip | |
rustbuild: only build cargo for host
Signed-off-by: Marc-Antoine Perennou <Marc-Antoine@Perennou.com>
| -rw-r--r-- | src/bootstrap/step.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/bootstrap/step.rs b/src/bootstrap/step.rs index 35e1b9c6776..ecd8a048786 100644 --- a/src/bootstrap/step.rs +++ b/src/bootstrap/step.rs @@ -575,6 +575,7 @@ pub fn build_rules<'a>(build: &'a Build) -> Rules { .dep(|s| s.name("libstd-tool")) .run(move |s| compile::tool(build, s.stage, s.target, "qemu-test-client")); rules.build("tool-cargo", "cargo") + .host(true) .default(build.config.extended) .dep(|s| s.name("maybe-clean-tools")) .dep(|s| s.name("libstd-tool")) |
