We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1826bf commit c2a0d11Copy full SHA for c2a0d11
src/tools/compiletest/src/runtest.rs
@@ -3773,14 +3773,8 @@ impl<'test> TestCx<'test> {
3773
3774
let mut stage_std_path = PathBuf::new();
3775
stage_std_path.push(&build_root);
3776
- if stage == "stage0" {
3777
- stage_std_path.push("stage0-std");
3778
- } else {
3779
- // stage2 reuses stage1-std.
3780
- stage_std_path.push("stage1-std");
3781
- }
3782
- stage_std_path.push(&self.config.target);
3783
- stage_std_path.push("release/deps");
+ stage_std_path.push(&stage);
+ stage_std_path.push("lib");
3784
3785
// Then, we need to build the recipe `rmake.rs` and link in the support library.
3786
let recipe_bin = tmpdir.join("rmake");
0 commit comments