Skip to content

Commit

Permalink
Don't build remote-test-server with the stage0 toolchain
Browse files Browse the repository at this point in the history
Newly added targets aren't available on the stage0 toolchain.
  • Loading branch information
Amanieu d'Antras authored and Amanieu committed Jan 27, 2021
1 parent a2f8f62 commit a072ecb
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/bootstrap/test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit a072ecb

Please sign in to comment.