Skip to content

Commit 6f43149

Browse files
committed
rustc: Prefer loading crates in the sysroot
This commit is a random stab in the dark to fix the spurious failures on #39518. The leading theory of the spurious failures on Windows is that the compiler is loading a path in the `deps` folder, passing it to `link.exe`, and then this is racing with Cargo itself updating those paths. This race, however, has a few unique properties: * It's isolated to just libstd. Most crates are never passed to the linker and simultaneously being worked on by Cargo. Cargo's typical execution of the dependency graph never hits this problem. * The crates are already all located in the sysroot in addition to the `deps` folder. This means that the compiler actually has two candidates of crates to load, and it's just arbitrarily rejecting one. Together this means that we shouldn't need to fix this problem "in the large" and we can instead just fix it in this isolated situation (hopefully). To solve this the compiler's been updated to prefer crates from the sysroot to leave Cargo's structure to itself. We'll see if this actually allows the PR to land...
1 parent 3be02fc commit 6f43149

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

src/librustc_metadata/locator.rs

+28
Original file line numberDiff line numberDiff line change
@@ -639,6 +639,34 @@ impl<'a> Context<'a> {
639639
lib.display()));
640640
continue;
641641
}
642+
643+
// Ok so at this point we've determined that `(lib, kind)` above is
644+
// a candidate crate to load, and that `slot` is either none (this
645+
// is the first crate of its kind) or if some the previous path has
646+
// the exact same hash (e.g. it's the exact same crate).
647+
//
648+
// In principle these two candidate crates are exactly the same so
649+
// we can choose either of them to link. As a stupidly gross hack,
650+
// however, we favor crate in the sysroot.
651+
//
652+
// You can find more info in rust-lang/rust#39518 and various linked
653+
// issues, but the general gist is that during testing libstd the
654+
// compilers has two candidates to choose from: one in the sysroot
655+
// and one in the deps folder. These two crates are the exact same
656+
// crate but if the compiler chooses the one in the deps folder
657+
// it'll cause spurious errors on Windows.
658+
//
659+
// As a result, we favor the sysroot crate here. Note that the
660+
// candidates are all canonicalized, so we canonicalize the sysroot
661+
// as well.
662+
if let Some((ref prev, _)) = ret {
663+
let sysroot = self.sess.sysroot();
664+
let sysroot = sysroot.canonicalize()
665+
.unwrap_or(sysroot.to_path_buf());
666+
if prev.starts_with(&sysroot) {
667+
continue
668+
}
669+
}
642670
*slot = Some((hash, metadata));
643671
ret = Some((lib, kind));
644672
}

0 commit comments

Comments
 (0)