about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAmanieu d'Antras <amanieu.dantras@huawei.com>2021-01-20 17:14:15 +0000
committerAmanieu d'Antras <amanieu@gmail.com>2021-01-27 23:08:15 +0000
commita072ecbf70eef05f2904031169e493782d65dd37 (patch)
treec9480565988fa975bc0bd5e95c6cc742677b6afe
parenta2f8f6281817d430e20726128b739d3c6708561c (diff)
downloadrust-a072ecbf70eef05f2904031169e493782d65dd37.tar.gz
rust-a072ecbf70eef05f2904031169e493782d65dd37.zip
Don't build remote-test-server with the stage0 toolchain
Newly added targets aren't available on the stage0 toolchain.
-rw-r--r--src/bootstrap/test.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/bootstrap/test.rs b/src/bootstrap/test.rs
index 335a1731002..ef2790e3f38 100644
--- a/src/bootstrap/test.rs
+++ b/src/bootstrap/test.rs
@@ -1932,8 +1932,7 @@ impl Step for RemoteCopyLibs {
         builder.info(&format!("REMOTE copy libs to emulator ({})", target));
         t!(fs::create_dir_all(builder.out.join("tmp")));
 
-        let server =
-            builder.ensure(tool::RemoteTestServer { compiler: compiler.with_stage(0), target });
+        let server = builder.ensure(tool::RemoteTestServer { compiler, target });
 
         // Spawn the emulator and wait for it to come online
         let tool = builder.tool_exe(Tool::RemoteTestClient);