Skip to content

Commit

Permalink
Merge pull request #18552 from lnicola/rust-src-message
Browse files Browse the repository at this point in the history
internal: Fix missing `rust-src` message
  • Loading branch information
lnicola authored Nov 24, 2024
2 parents a2bb014 + 8fc5f3d commit 327ab29
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions crates/project-model/src/sysroot.rs
Original file line number Diff line number Diff line change
Expand Up @@ -444,13 +444,14 @@ fn discover_sysroot_src_dir_or_add_component(
get_rust_src(sysroot_path)
})
.ok_or_else(|| {
let error = "\
tracing::error!(%sysroot_path, "can't load standard library, try installing `rust-src`");
format_err!(
"\
can't load standard library from sysroot
{sysroot_path}
(discovered via `rustc --print sysroot`)
try installing the Rust source the same way you installed rustc";
tracing::error!(error);
format_err!(error)
try installing `rust-src` the same way you installed `rustc`"
)
})
}

Expand Down

0 comments on commit 327ab29

Please sign in to comment.