2020-08-25 15:00:08 +00:00
|
|
|
//! Loads "sysroot" crate.
|
|
|
|
//!
|
|
|
|
//! One confusing point here is that normally sysroot is a bunch of `.rlib`s,
|
|
|
|
//! but we can't process `.rlib` and need source code instead. The source code
|
|
|
|
//! is typically installed with `rustup component add rust-src` command.
|
2019-09-30 08:58:53 +00:00
|
|
|
|
2021-10-21 15:49:28 +00:00
|
|
|
use std::{env, fs, iter, ops, path::PathBuf, process::Command};
|
2019-01-10 19:21:14 +00:00
|
|
|
|
2024-01-03 20:01:06 +00:00
|
|
|
use anyhow::{format_err, Context, Result};
|
2023-01-21 16:29:07 +00:00
|
|
|
use base_db::CrateName;
|
2024-01-13 16:22:39 +00:00
|
|
|
use itertools::Itertools;
|
2021-01-14 15:47:42 +00:00
|
|
|
use la_arena::{Arena, Idx};
|
2020-07-10 13:27:34 +00:00
|
|
|
use paths::{AbsPath, AbsPathBuf};
|
2022-09-19 15:31:08 +00:00
|
|
|
use rustc_hash::FxHashMap;
|
2020-05-08 12:54:29 +00:00
|
|
|
|
2023-04-20 19:25:39 +00:00
|
|
|
use crate::{utf8_stdout, CargoConfig, CargoWorkspace, ManifestPath};
|
2019-01-10 19:21:14 +00:00
|
|
|
|
2021-08-20 13:56:02 +00:00
|
|
|
#[derive(Debug, Clone, Eq, PartialEq)]
|
2019-01-10 19:21:14 +00:00
|
|
|
pub struct Sysroot {
|
2021-08-20 13:56:02 +00:00
|
|
|
root: AbsPathBuf,
|
2022-07-25 14:07:41 +00:00
|
|
|
src_root: AbsPathBuf,
|
2024-01-13 16:22:39 +00:00
|
|
|
mode: SysrootMode,
|
2019-01-10 19:47:05 +00:00
|
|
|
}
|
|
|
|
|
2024-01-13 16:22:39 +00:00
|
|
|
#[derive(Debug, Clone, Eq, PartialEq)]
|
|
|
|
pub(crate) enum SysrootMode {
|
|
|
|
Workspace(CargoWorkspace),
|
|
|
|
Stitched(Stitched),
|
|
|
|
}
|
2019-01-10 19:47:05 +00:00
|
|
|
|
2020-07-10 13:27:34 +00:00
|
|
|
#[derive(Debug, Clone, Eq, PartialEq)]
|
2024-01-13 16:22:39 +00:00
|
|
|
pub(crate) struct Stitched {
|
|
|
|
crates: Arena<SysrootCrateData>,
|
2020-03-19 16:59:31 +00:00
|
|
|
}
|
|
|
|
|
2024-01-13 16:22:39 +00:00
|
|
|
impl ops::Index<SysrootCrate> for Stitched {
|
2020-03-19 16:59:31 +00:00
|
|
|
type Output = SysrootCrateData;
|
|
|
|
fn index(&self, index: SysrootCrate) -> &SysrootCrateData {
|
|
|
|
&self.crates[index]
|
|
|
|
}
|
2019-01-10 19:21:14 +00:00
|
|
|
}
|
|
|
|
|
2024-01-13 16:22:39 +00:00
|
|
|
impl Stitched {
|
|
|
|
pub(crate) fn public_deps(&self) -> impl Iterator<Item = (CrateName, SysrootCrate, bool)> + '_ {
|
2020-08-25 15:53:24 +00:00
|
|
|
// core is added as a dependency before std in order to
|
|
|
|
// mimic rustcs dependency order
|
2021-09-28 19:39:41 +00:00
|
|
|
["core", "alloc", "std"]
|
2021-11-03 12:21:46 +00:00
|
|
|
.into_iter()
|
2021-09-28 19:39:41 +00:00
|
|
|
.zip(iter::repeat(true))
|
|
|
|
.chain(iter::once(("test", false)))
|
2023-01-21 16:29:07 +00:00
|
|
|
.filter_map(move |(name, prelude)| {
|
|
|
|
Some((CrateName::new(name).unwrap(), self.by_name(name)?, prelude))
|
|
|
|
})
|
2019-01-10 20:05:22 +00:00
|
|
|
}
|
|
|
|
|
2024-01-13 16:22:39 +00:00
|
|
|
pub(crate) fn proc_macro(&self) -> Option<SysrootCrate> {
|
2019-11-24 10:33:12 +00:00
|
|
|
self.by_name("proc_macro")
|
|
|
|
}
|
|
|
|
|
2024-02-01 15:16:38 +00:00
|
|
|
pub(crate) fn crates(&self) -> impl ExactSizeIterator<Item = SysrootCrate> + '_ {
|
2019-01-10 21:37:10 +00:00
|
|
|
self.crates.iter().map(|(id, _data)| id)
|
|
|
|
}
|
2023-01-27 12:49:28 +00:00
|
|
|
|
2024-01-13 16:22:39 +00:00
|
|
|
fn by_name(&self, name: &str) -> Option<SysrootCrate> {
|
|
|
|
let (id, _data) = self.crates.iter().find(|(_id, data)| data.name == name)?;
|
|
|
|
Some(id)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) type SysrootCrate = Idx<SysrootCrateData>;
|
|
|
|
|
|
|
|
#[derive(Debug, Clone, Eq, PartialEq)]
|
|
|
|
pub(crate) struct SysrootCrateData {
|
|
|
|
pub(crate) name: String,
|
|
|
|
pub(crate) root: ManifestPath,
|
|
|
|
pub(crate) deps: Vec<SysrootCrate>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Sysroot {
|
|
|
|
/// Returns sysroot "root" directory, where `bin/`, `etc/`, `lib/`, `libexec/`
|
|
|
|
/// subfolder live, like:
|
|
|
|
/// `$HOME/.rustup/toolchains/nightly-2022-07-23-x86_64-unknown-linux-gnu`
|
|
|
|
pub fn root(&self) -> &AbsPath {
|
|
|
|
&self.root
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns the sysroot "source" directory, where stdlib sources are located, like:
|
|
|
|
/// `$HOME/.rustup/toolchains/nightly-2022-07-23-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library`
|
|
|
|
pub fn src_root(&self) -> &AbsPath {
|
|
|
|
&self.src_root
|
|
|
|
}
|
|
|
|
|
2023-01-27 12:49:28 +00:00
|
|
|
pub fn is_empty(&self) -> bool {
|
2024-01-13 16:22:39 +00:00
|
|
|
match &self.mode {
|
|
|
|
SysrootMode::Workspace(ws) => ws.packages().next().is_none(),
|
|
|
|
SysrootMode::Stitched(stitched) => stitched.crates.is_empty(),
|
|
|
|
}
|
2023-01-27 12:49:28 +00:00
|
|
|
}
|
2023-04-13 06:40:14 +00:00
|
|
|
|
|
|
|
pub fn loading_warning(&self) -> Option<String> {
|
2024-01-13 16:22:39 +00:00
|
|
|
let has_core = match &self.mode {
|
|
|
|
SysrootMode::Workspace(ws) => ws.packages().any(|p| ws[p].name == "core"),
|
|
|
|
SysrootMode::Stitched(stitched) => stitched.by_name("core").is_some(),
|
|
|
|
};
|
|
|
|
if !has_core {
|
2023-04-13 06:40:14 +00:00
|
|
|
let var_note = if env::var_os("RUST_SRC_PATH").is_some() {
|
|
|
|
" (`RUST_SRC_PATH` might be incorrect, try unsetting it)"
|
|
|
|
} else {
|
|
|
|
" try running `rustup component add rust-src` to possible fix this"
|
|
|
|
};
|
|
|
|
Some(format!(
|
2023-06-19 12:01:47 +00:00
|
|
|
"could not find libcore in loaded sysroot at `{}`{var_note}",
|
|
|
|
self.src_root.as_path(),
|
2023-04-13 06:40:14 +00:00
|
|
|
))
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
2024-01-13 16:22:39 +00:00
|
|
|
|
|
|
|
pub fn num_packages(&self) -> usize {
|
|
|
|
match &self.mode {
|
|
|
|
SysrootMode::Workspace(ws) => ws.packages().count(),
|
|
|
|
SysrootMode::Stitched(c) => c.crates().count(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn mode(&self) -> &SysrootMode {
|
|
|
|
&self.mode
|
|
|
|
}
|
2022-10-01 18:47:31 +00:00
|
|
|
}
|
2019-01-10 21:37:10 +00:00
|
|
|
|
2023-02-06 11:07:33 +00:00
|
|
|
// FIXME: Expose a builder api as loading the sysroot got way too modular and complicated.
|
2022-10-01 18:47:31 +00:00
|
|
|
impl Sysroot {
|
2022-10-19 20:25:57 +00:00
|
|
|
/// Attempts to discover the toolchain's sysroot from the given `dir`.
|
2024-01-13 16:22:39 +00:00
|
|
|
pub fn discover(
|
|
|
|
dir: &AbsPath,
|
|
|
|
extra_env: &FxHashMap<String, String>,
|
|
|
|
metadata: bool,
|
|
|
|
) -> Result<Sysroot> {
|
2023-06-19 12:01:47 +00:00
|
|
|
tracing::debug!("discovering sysroot for {dir}");
|
2022-09-19 15:31:08 +00:00
|
|
|
let sysroot_dir = discover_sysroot_dir(dir, extra_env)?;
|
2022-10-01 18:47:31 +00:00
|
|
|
let sysroot_src_dir =
|
|
|
|
discover_sysroot_src_dir_or_add_component(&sysroot_dir, dir, extra_env)?;
|
2024-01-13 16:22:39 +00:00
|
|
|
Ok(Sysroot::load(sysroot_dir, sysroot_src_dir, metadata))
|
2020-08-25 15:00:08 +00:00
|
|
|
}
|
|
|
|
|
2023-02-06 11:07:33 +00:00
|
|
|
pub fn discover_with_src_override(
|
2023-03-08 11:41:38 +00:00
|
|
|
current_dir: &AbsPath,
|
2023-02-06 11:07:33 +00:00
|
|
|
extra_env: &FxHashMap<String, String>,
|
|
|
|
src: AbsPathBuf,
|
2024-01-13 16:22:39 +00:00
|
|
|
metadata: bool,
|
2023-02-06 11:07:33 +00:00
|
|
|
) -> Result<Sysroot> {
|
2023-06-19 12:01:47 +00:00
|
|
|
tracing::debug!("discovering sysroot for {current_dir}");
|
2023-03-08 11:41:38 +00:00
|
|
|
let sysroot_dir = discover_sysroot_dir(current_dir, extra_env)?;
|
2024-01-13 16:22:39 +00:00
|
|
|
Ok(Sysroot::load(sysroot_dir, src, metadata))
|
2023-02-06 11:07:33 +00:00
|
|
|
}
|
|
|
|
|
2023-09-05 19:21:14 +00:00
|
|
|
pub fn discover_rustc_src(&self) -> Option<ManifestPath> {
|
2023-03-08 11:41:38 +00:00
|
|
|
get_rustc_src(&self.root)
|
2021-02-11 16:34:56 +00:00
|
|
|
}
|
|
|
|
|
2024-01-03 20:01:06 +00:00
|
|
|
pub fn discover_rustc(&self) -> anyhow::Result<AbsPathBuf> {
|
2023-09-05 19:21:14 +00:00
|
|
|
let rustc = self.root.join("bin/rustc");
|
|
|
|
tracing::debug!(?rustc, "checking for rustc binary at location");
|
|
|
|
match fs::metadata(&rustc) {
|
|
|
|
Ok(_) => Ok(rustc),
|
2024-01-03 20:01:06 +00:00
|
|
|
Err(e) => Err(e).context(format!(
|
|
|
|
"failed to discover rustc in sysroot: {:?}",
|
|
|
|
AsRef::<std::path::Path>::as_ref(&self.root)
|
|
|
|
)),
|
2023-09-05 19:21:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-01-13 16:22:39 +00:00
|
|
|
pub fn with_sysroot_dir(sysroot_dir: AbsPathBuf, metadata: bool) -> Result<Sysroot> {
|
2022-10-01 18:47:31 +00:00
|
|
|
let sysroot_src_dir = discover_sysroot_src_dir(&sysroot_dir).ok_or_else(|| {
|
2023-06-19 12:01:47 +00:00
|
|
|
format_err!("can't load standard library from sysroot path {sysroot_dir}")
|
2022-10-01 18:47:31 +00:00
|
|
|
})?;
|
2024-01-13 16:22:39 +00:00
|
|
|
Ok(Sysroot::load(sysroot_dir, sysroot_src_dir, metadata))
|
2022-10-01 18:47:31 +00:00
|
|
|
}
|
|
|
|
|
2024-01-13 16:22:39 +00:00
|
|
|
pub fn load(sysroot_dir: AbsPathBuf, sysroot_src_dir: AbsPathBuf, metadata: bool) -> Sysroot {
|
|
|
|
if metadata {
|
|
|
|
let sysroot: Option<_> = (|| {
|
|
|
|
let sysroot_cargo_toml = ManifestPath::try_from(
|
|
|
|
AbsPathBuf::try_from(&*format!("{sysroot_src_dir}/sysroot/Cargo.toml")).ok()?,
|
|
|
|
)
|
|
|
|
.ok()?;
|
|
|
|
let current_dir =
|
|
|
|
AbsPathBuf::try_from(&*format!("{sysroot_src_dir}/sysroot")).ok()?;
|
|
|
|
let res = CargoWorkspace::fetch_metadata(
|
|
|
|
&sysroot_cargo_toml,
|
|
|
|
¤t_dir,
|
|
|
|
&CargoConfig::default(),
|
|
|
|
&|_| (),
|
|
|
|
)
|
|
|
|
.map_err(|e| {
|
|
|
|
tracing::error!(
|
|
|
|
"failed to load sysroot `{sysroot_src_dir}/sysroot/Cargo.toml`: {}",
|
|
|
|
e
|
|
|
|
);
|
|
|
|
e
|
|
|
|
});
|
|
|
|
if let Err(e) =
|
2024-01-18 12:59:49 +00:00
|
|
|
std::fs::remove_file(format!("{sysroot_src_dir}/sysroot/Cargo.lock"))
|
2024-01-13 16:22:39 +00:00
|
|
|
{
|
|
|
|
tracing::error!(
|
|
|
|
"failed to remove sysroot `{sysroot_src_dir}/sysroot/Cargo.lock`: {}",
|
|
|
|
e
|
|
|
|
)
|
|
|
|
}
|
|
|
|
let mut res = res.ok()?;
|
|
|
|
|
|
|
|
// Patch out `rustc-std-workspace-*` crates to point to the real crates.
|
|
|
|
// This is done prior to `CrateGraph` construction to avoid having duplicate `std` targets.
|
|
|
|
|
|
|
|
let mut fake_core = None;
|
|
|
|
let mut fake_alloc = None;
|
|
|
|
let mut fake_std = None;
|
|
|
|
let mut real_core = None;
|
|
|
|
let mut real_alloc = None;
|
|
|
|
let mut real_std = None;
|
|
|
|
res.packages.iter().enumerate().for_each(|(idx, package)| {
|
|
|
|
match package.name.strip_prefix("rustc-std-workspace-") {
|
|
|
|
Some("core") => fake_core = Some((idx, package.id.clone())),
|
|
|
|
Some("alloc") => fake_alloc = Some((idx, package.id.clone())),
|
|
|
|
Some("std") => fake_std = Some((idx, package.id.clone())),
|
|
|
|
Some(_) => {
|
|
|
|
tracing::warn!("unknown rustc-std-workspace-* crate: {}", package.name)
|
|
|
|
}
|
|
|
|
None => match &*package.name {
|
|
|
|
"core" => real_core = Some(package.id.clone()),
|
|
|
|
"alloc" => real_alloc = Some(package.id.clone()),
|
|
|
|
"std" => real_std = Some(package.id.clone()),
|
|
|
|
_ => (),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
let patches =
|
|
|
|
[fake_core.zip(real_core), fake_alloc.zip(real_alloc), fake_std.zip(real_std)]
|
|
|
|
.into_iter()
|
|
|
|
.flatten();
|
|
|
|
|
|
|
|
let resolve = res.resolve.as_mut().expect("metadata executed with deps");
|
|
|
|
let mut remove_nodes = vec![];
|
|
|
|
for (idx, node) in resolve.nodes.iter_mut().enumerate() {
|
|
|
|
// Replace them in the dependency list
|
|
|
|
node.deps.iter_mut().for_each(|dep| {
|
|
|
|
if let Some((_, real)) =
|
|
|
|
patches.clone().find(|((_, fake_id), _)| *fake_id == dep.pkg)
|
|
|
|
{
|
|
|
|
dep.pkg = real;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
if patches.clone().any(|((_, fake), _)| fake == node.id) {
|
|
|
|
remove_nodes.push(idx);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Remove the fake ones from the resolve data
|
|
|
|
remove_nodes.into_iter().rev().for_each(|r| {
|
|
|
|
resolve.nodes.remove(r);
|
|
|
|
});
|
|
|
|
// Remove the fake ones from the packages
|
|
|
|
patches.map(|((r, _), _)| r).sorted().rev().for_each(|r| {
|
|
|
|
res.packages.remove(r);
|
|
|
|
});
|
|
|
|
|
|
|
|
res.workspace_members = res
|
|
|
|
.packages
|
|
|
|
.iter()
|
2024-01-18 12:59:49 +00:00
|
|
|
.filter(|&package| RELEVANT_SYSROOT_CRATES.contains(&&*package.name))
|
|
|
|
.map(|package| package.id.clone())
|
2024-01-13 16:22:39 +00:00
|
|
|
.collect();
|
|
|
|
let cargo_workspace = CargoWorkspace::new(res);
|
|
|
|
Some(Sysroot {
|
|
|
|
root: sysroot_dir.clone(),
|
|
|
|
src_root: sysroot_src_dir.clone(),
|
|
|
|
mode: SysrootMode::Workspace(cargo_workspace),
|
|
|
|
})
|
|
|
|
})();
|
|
|
|
if let Some(sysroot) = sysroot {
|
|
|
|
return sysroot;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
let mut stitched = Stitched { crates: Arena::default() };
|
2020-08-25 15:00:08 +00:00
|
|
|
|
2021-06-21 13:26:26 +00:00
|
|
|
for path in SYSROOT_CRATES.trim().lines() {
|
|
|
|
let name = path.split('/').last().unwrap();
|
2022-12-23 18:42:58 +00:00
|
|
|
let root = [format!("{path}/src/lib.rs"), format!("lib{path}/lib.rs")]
|
2021-11-03 12:21:46 +00:00
|
|
|
.into_iter()
|
2024-01-13 16:22:39 +00:00
|
|
|
.map(|it| sysroot_src_dir.join(it))
|
2021-07-19 18:20:10 +00:00
|
|
|
.filter_map(|it| ManifestPath::try_from(it).ok())
|
2021-07-17 13:43:33 +00:00
|
|
|
.find(|it| fs::metadata(it).is_ok());
|
2020-08-25 15:00:08 +00:00
|
|
|
|
|
|
|
if let Some(root) = root {
|
2024-01-13 16:22:39 +00:00
|
|
|
stitched.crates.alloc(SysrootCrateData {
|
2019-01-10 19:47:05 +00:00
|
|
|
name: name.into(),
|
2019-01-10 21:37:10 +00:00
|
|
|
root,
|
2019-01-10 19:47:05 +00:00
|
|
|
deps: Vec::new(),
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
2020-08-25 15:00:08 +00:00
|
|
|
|
2024-01-13 16:22:39 +00:00
|
|
|
if let Some(std) = stitched.by_name("std") {
|
2019-01-10 19:47:05 +00:00
|
|
|
for dep in STD_DEPS.trim().lines() {
|
2024-01-13 16:22:39 +00:00
|
|
|
if let Some(dep) = stitched.by_name(dep) {
|
|
|
|
stitched.crates[std].deps.push(dep)
|
2019-01-10 19:47:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-08-25 15:00:08 +00:00
|
|
|
|
2024-01-13 16:22:39 +00:00
|
|
|
if let Some(alloc) = stitched.by_name("alloc") {
|
2022-11-07 10:45:52 +00:00
|
|
|
for dep in ALLOC_DEPS.trim().lines() {
|
2024-01-13 16:22:39 +00:00
|
|
|
if let Some(dep) = stitched.by_name(dep) {
|
|
|
|
stitched.crates[alloc].deps.push(dep)
|
2022-11-07 10:45:52 +00:00
|
|
|
}
|
2019-06-13 19:59:50 +00:00
|
|
|
}
|
|
|
|
}
|
2020-08-25 15:00:08 +00:00
|
|
|
|
2024-01-13 16:22:39 +00:00
|
|
|
if let Some(proc_macro) = stitched.by_name("proc_macro") {
|
2022-11-07 10:45:52 +00:00
|
|
|
for dep in PROC_MACRO_DEPS.trim().lines() {
|
2024-01-13 16:22:39 +00:00
|
|
|
if let Some(dep) = stitched.by_name(dep) {
|
|
|
|
stitched.crates[proc_macro].deps.push(dep)
|
2022-11-07 10:45:52 +00:00
|
|
|
}
|
2021-07-01 23:38:49 +00:00
|
|
|
}
|
|
|
|
}
|
2024-01-13 16:22:39 +00:00
|
|
|
Sysroot {
|
|
|
|
root: sysroot_dir,
|
|
|
|
src_root: sysroot_src_dir,
|
|
|
|
mode: SysrootMode::Stitched(stitched),
|
|
|
|
}
|
2019-01-10 19:21:14 +00:00
|
|
|
}
|
|
|
|
}
|
2019-01-10 19:47:05 +00:00
|
|
|
|
2022-09-19 15:31:08 +00:00
|
|
|
fn discover_sysroot_dir(
|
|
|
|
current_dir: &AbsPath,
|
|
|
|
extra_env: &FxHashMap<String, String>,
|
|
|
|
) -> Result<AbsPathBuf> {
|
2021-02-11 16:34:56 +00:00
|
|
|
let mut rustc = Command::new(toolchain::rustc());
|
2022-09-19 15:31:08 +00:00
|
|
|
rustc.envs(extra_env);
|
2022-12-30 08:05:03 +00:00
|
|
|
rustc.current_dir(current_dir).args(["--print", "sysroot"]);
|
2021-08-15 12:46:13 +00:00
|
|
|
tracing::debug!("Discovering sysroot by {:?}", rustc);
|
2021-02-11 16:34:56 +00:00
|
|
|
let stdout = utf8_stdout(rustc)?;
|
|
|
|
Ok(AbsPathBuf::assert(PathBuf::from(stdout)))
|
|
|
|
}
|
|
|
|
|
2022-10-01 18:47:31 +00:00
|
|
|
fn discover_sysroot_src_dir(sysroot_path: &AbsPathBuf) -> Option<AbsPathBuf> {
|
2020-02-17 22:38:01 +00:00
|
|
|
if let Ok(path) = env::var("RUST_SRC_PATH") {
|
2022-10-01 18:47:31 +00:00
|
|
|
if let Ok(path) = AbsPathBuf::try_from(path.as_str()) {
|
|
|
|
let core = path.join("core");
|
|
|
|
if fs::metadata(&core).is_ok() {
|
2023-06-19 12:01:47 +00:00
|
|
|
tracing::debug!("Discovered sysroot by RUST_SRC_PATH: {path}");
|
2022-10-01 18:47:31 +00:00
|
|
|
return Some(path);
|
|
|
|
}
|
2023-06-19 12:01:47 +00:00
|
|
|
tracing::debug!("RUST_SRC_PATH is set, but is invalid (no core: {core:?}), ignoring");
|
2022-10-01 18:47:31 +00:00
|
|
|
} else {
|
|
|
|
tracing::debug!("RUST_SRC_PATH is set, but is invalid, ignoring");
|
2020-11-06 10:29:54 +00:00
|
|
|
}
|
2020-02-17 22:38:01 +00:00
|
|
|
}
|
2020-08-25 15:00:08 +00:00
|
|
|
|
2021-06-13 03:54:16 +00:00
|
|
|
get_rust_src(sysroot_path)
|
2022-10-01 18:47:31 +00:00
|
|
|
}
|
2022-10-19 19:17:11 +00:00
|
|
|
|
2022-10-01 18:47:31 +00:00
|
|
|
fn discover_sysroot_src_dir_or_add_component(
|
|
|
|
sysroot_path: &AbsPathBuf,
|
|
|
|
current_dir: &AbsPath,
|
|
|
|
extra_env: &FxHashMap<String, String>,
|
|
|
|
) -> Result<AbsPathBuf> {
|
|
|
|
discover_sysroot_src_dir(sysroot_path)
|
2020-08-25 15:00:08 +00:00
|
|
|
.or_else(|| {
|
|
|
|
let mut rustup = Command::new(toolchain::rustup());
|
2022-09-19 15:31:08 +00:00
|
|
|
rustup.envs(extra_env);
|
2022-12-30 08:05:03 +00:00
|
|
|
rustup.current_dir(current_dir).args(["component", "add", "rust-src"]);
|
2022-10-19 20:25:57 +00:00
|
|
|
tracing::info!("adding rust-src component by {:?}", rustup);
|
2020-08-25 15:00:08 +00:00
|
|
|
utf8_stdout(rustup).ok()?;
|
2021-06-13 03:54:16 +00:00
|
|
|
get_rust_src(sysroot_path)
|
2020-08-25 15:00:08 +00:00
|
|
|
})
|
|
|
|
.ok_or_else(|| {
|
|
|
|
format_err!(
|
|
|
|
"\
|
|
|
|
can't load standard library from sysroot
|
2023-06-19 12:01:47 +00:00
|
|
|
{sysroot_path}
|
2020-08-25 15:00:08 +00:00
|
|
|
(discovered via `rustc --print sysroot`)
|
2020-12-13 12:01:55 +00:00
|
|
|
try installing the Rust source the same way you installed rustc",
|
2020-08-25 15:00:08 +00:00
|
|
|
)
|
|
|
|
})
|
2020-07-30 12:04:41 +00:00
|
|
|
}
|
|
|
|
|
2021-07-19 18:20:10 +00:00
|
|
|
fn get_rustc_src(sysroot_path: &AbsPath) -> Option<ManifestPath> {
|
2021-02-11 16:34:56 +00:00
|
|
|
let rustc_src = sysroot_path.join("lib/rustlib/rustc-src/rust/compiler/rustc/Cargo.toml");
|
2021-07-19 18:20:10 +00:00
|
|
|
let rustc_src = ManifestPath::try_from(rustc_src).ok()?;
|
2023-06-19 12:01:47 +00:00
|
|
|
tracing::debug!("checking for rustc source code: {rustc_src}");
|
2021-07-17 13:43:33 +00:00
|
|
|
if fs::metadata(&rustc_src).is_ok() {
|
2021-02-11 16:34:56 +00:00
|
|
|
Some(rustc_src)
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-30 12:04:41 +00:00
|
|
|
fn get_rust_src(sysroot_path: &AbsPath) -> Option<AbsPathBuf> {
|
2021-10-04 15:36:56 +00:00
|
|
|
let rust_src = sysroot_path.join("lib/rustlib/src/rust/library");
|
2023-06-19 12:01:47 +00:00
|
|
|
tracing::debug!("checking sysroot library: {rust_src}");
|
2021-10-04 15:36:56 +00:00
|
|
|
if fs::metadata(&rust_src).is_ok() {
|
|
|
|
Some(rust_src)
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
2020-02-17 21:33:48 +00:00
|
|
|
}
|
|
|
|
|
2019-01-10 19:47:05 +00:00
|
|
|
const SYSROOT_CRATES: &str = "
|
|
|
|
alloc
|
2022-11-07 10:45:52 +00:00
|
|
|
backtrace
|
2020-07-30 14:17:59 +00:00
|
|
|
core
|
2019-01-10 19:47:05 +00:00
|
|
|
panic_abort
|
2020-07-30 14:17:59 +00:00
|
|
|
panic_unwind
|
|
|
|
proc_macro
|
|
|
|
profiler_builtins
|
|
|
|
std
|
2021-06-21 13:26:26 +00:00
|
|
|
stdarch/crates/std_detect
|
2020-07-30 14:17:59 +00:00
|
|
|
test
|
|
|
|
unwind";
|
2019-01-10 19:47:05 +00:00
|
|
|
|
2022-11-07 10:45:52 +00:00
|
|
|
const ALLOC_DEPS: &str = "core";
|
|
|
|
|
2019-01-10 19:47:05 +00:00
|
|
|
const STD_DEPS: &str = "
|
2019-02-03 22:23:59 +00:00
|
|
|
alloc
|
2020-07-30 14:17:59 +00:00
|
|
|
panic_unwind
|
2022-11-07 10:45:52 +00:00
|
|
|
panic_abort
|
|
|
|
core
|
2020-07-30 14:17:59 +00:00
|
|
|
profiler_builtins
|
2022-11-07 10:45:52 +00:00
|
|
|
unwind
|
2021-06-21 13:26:26 +00:00
|
|
|
std_detect
|
2022-11-07 10:45:52 +00:00
|
|
|
test";
|
|
|
|
|
2023-03-09 11:32:16 +00:00
|
|
|
// core is required for our builtin derives to work in the proc_macro lib currently
|
|
|
|
const PROC_MACRO_DEPS: &str = "
|
|
|
|
std
|
|
|
|
core";
|
2024-01-13 16:22:39 +00:00
|
|
|
|
|
|
|
const RELEVANT_SYSROOT_CRATES: &[&str] = &["core", "alloc", "std", "test", "proc_macro"];
|