Skip to content

Commit 9131d23

Browse files
committedAug 30, 2020
resolve: Don't speculatively load crates if this is a speculative resolution
This avoids a rare rustdoc bug where loading `core` twice caused a 'cannot find a built-in macro' error: 1. `x.py build --stage 1` builds the standard library and creates a sysroot 2. `cargo doc` does something like `cargo check` to create `rmeta`s for all the crates (unrelated to what was built above) 3. the `cargo check`-like `libcore-*.rmeta` is loaded as a transitive dependency *and claims ownership* of builtin macros 4. `rustdoc` later tries to resolve some path in a doc link 5. suggestion logic fires and loads "extern prelude" crates by name 6. the sysroot `libcore-*.rlib` is loaded and *fails to claim ownership* of builtin macros This fixes step 5. by not running suggestion logic if this is a speculative resolution. Additionally, it marks `resolve_ast_path` as a speculative resolution.
1 parent a1c71a1 commit 9131d23

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed
 

‎src/librustc_resolve/lib.rs

+7-3
Original file line numberDiff line numberDiff line change
@@ -2385,8 +2385,12 @@ impl<'a> Resolver<'a> {
23852385
Res::Def(DefKind::Mod, _) => true,
23862386
_ => false,
23872387
};
2388-
let mut candidates =
2389-
self.lookup_import_candidates(ident, TypeNS, parent_scope, is_mod);
2388+
// Don't look up import candidates if this is a speculative resolve
2389+
let mut candidates = if record_used {
2390+
self.lookup_import_candidates(ident, TypeNS, parent_scope, is_mod)
2391+
} else {
2392+
Vec::new()
2393+
};
23902394
candidates.sort_by_cached_key(|c| {
23912395
(c.path.segments.len(), pprust::path_to_string(&c.path))
23922396
});
@@ -3200,7 +3204,7 @@ impl<'a> Resolver<'a> {
32003204
&Segment::from_path(path),
32013205
Some(ns),
32023206
parent_scope,
3203-
true,
3207+
false,
32043208
path.span,
32053209
CrateLint::No,
32063210
) {

0 commit comments

Comments
 (0)
Please sign in to comment.