Skip to content

Commit d4c3eea

Browse files
committed
Update for libtest changes.
Update from rust-lang/rust#63637.
1 parent aee4048 commit d4c3eea

File tree

2 files changed

+26
-163
lines changed

2 files changed

+26
-163
lines changed

src/cargo/core/compiler/standard_lib.rs

+24-22
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ pub fn parse_unstable_flag(value: Option<&str>) -> Vec<String> {
1919
crates.insert("core");
2020
crates.insert("panic_unwind");
2121
crates.insert("compiler_builtins");
22+
crates.insert("test");
2223
} else if crates.contains("core") {
2324
crates.insert("compiler_builtins");
2425
}
@@ -31,18 +32,22 @@ pub fn resolve_std<'cfg>(
3132
crates: &[String],
3233
) -> CargoResult<(PackageSet<'cfg>, Resolve)> {
3334
let src_path = detect_sysroot_src_path(ws)?;
34-
let mut patch = HashMap::new();
35+
let to_patch = [
36+
"rustc-std-workspace-core",
37+
"rustc-std-workspace-alloc",
38+
"rustc-std-workspace-std",
39+
];
40+
let patches = to_patch
41+
.iter()
42+
.map(|name| {
43+
let source_path = SourceId::for_path(&src_path.join("src").join("tools").join(name))?;
44+
let dep = Dependency::parse_no_deprecated(name, None, source_path)?;
45+
Ok(dep)
46+
})
47+
.collect::<CargoResult<Vec<_>>>()?;
3548
let crates_io_url = crate::sources::CRATES_IO_INDEX.parse().unwrap();
36-
// rustc-std-workspace-core = { path = 'src/tools/rustc-std-workspace-core' }
37-
let source_path_core =
38-
SourceId::for_path(&src_path.join("src/tools/rustc-std-workspace-core"))?;
39-
let core = Dependency::parse_no_deprecated("rustc-std-workspace-core", None, source_path_core)?;
40-
// rustc-std-workspace-alloc = { path = 'src/tools/rustc-std-workspace-alloc' }
41-
let source_path_alloc =
42-
SourceId::for_path(&src_path.join("src/tools/rustc-std-workspace-alloc"))?;
43-
let alloc =
44-
Dependency::parse_no_deprecated("rustc-std-workspace-alloc", None, source_path_alloc)?;
45-
patch.insert(crates_io_url, vec![core, alloc]);
49+
let mut patch = HashMap::new();
50+
patch.insert(crates_io_url, patches);
4651
let members = vec![
4752
String::from("src/libstd"),
4853
String::from("src/libcore"),
@@ -67,21 +72,18 @@ pub fn resolve_std<'cfg>(
6772
let config = ws.config();
6873
// This is a delicate hack. In order for features to resolve correctly,
6974
// the resolver needs to run a specific "current" member of the workspace.
70-
// Thus, in order to set the features for `std`, we need to set `std` to
71-
// be the "current" member. Since none of the other crates need to alter
72-
// their features, this should be fine, for now. Perhaps in the future
73-
// features will be decoupled from the resolver and it will be easier to
74-
// control feature selection.
75-
let current_manifest = src_path.join("src/libstd/Cargo.toml");
75+
// Thus, in order to set the features for `std`, we need to set `libtest`
76+
// to be the "current" member. `libtest` is the root, and all other
77+
// standard library crates are dependencies from there. Since none of the
78+
// other crates need to alter their features, this should be fine, for
79+
// now. Perhaps in the future features will be decoupled from the resolver
80+
// and it will be easier to control feature selection.
81+
let current_manifest = src_path.join("src/libtest/Cargo.toml");
7682
// TODO: Consider setting require_option_deps false?
7783
// TODO: Consider doing something to enforce --locked? Or to prevent the
7884
// lock file from being written, such as setting ephemeral.
7985
let std_ws = Workspace::new_virtual(src_path, current_manifest, virtual_manifest, config)?;
80-
// `test` is not in the default set because it is optional, but it needs
81-
// to be part of the resolve in case we do need it.
82-
let mut spec_pkgs = Vec::from(crates);
83-
spec_pkgs.push("test".to_string());
84-
let spec = Packages::Packages(spec_pkgs);
86+
let spec = Packages::Packages(Vec::from(crates));
8587
let specs = spec.to_package_id_specs(&std_ws)?;
8688
let features = vec!["panic-unwind".to_string(), "backtrace".to_string()];
8789
// dev_deps setting shouldn't really matter here.

src/cargo/core/compiler/unit_dependencies.rs

+2-141
Original file line numberDiff line numberDiff line change
@@ -76,17 +76,12 @@ pub fn build_unit_dependencies<'a, 'cfg>(
7676
};
7777

7878
let std_unit_deps = calc_deps_of_std(&mut state, std_roots)?;
79-
let libtest_unit_deps = calc_deps_of_libtest(&mut state, std_roots, roots)?;
8079

8180
deps_of_roots(roots, &mut state)?;
8281
super::links::validate_links(state.resolve(), &state.unit_dependencies)?;
8382
// Hopefully there aren't any links conflicts with the standard library?
8483

85-
if let Some(mut std_unit_deps) = std_unit_deps {
86-
if let Some(libtest_unit_deps) = libtest_unit_deps {
87-
attach_std_test(&mut state, libtest_unit_deps, &std_unit_deps);
88-
}
89-
fixup_proc_macro(&mut std_unit_deps);
84+
if let Some(std_unit_deps) = std_unit_deps {
9085
attach_std_deps(&mut state, std_roots, std_unit_deps);
9186
}
9287

@@ -122,118 +117,6 @@ fn calc_deps_of_std<'a, 'cfg>(
122117
)))
123118
}
124119

125-
/// Compute all the dependencies for libtest.
126-
/// Returns None if libtest is not needed.
127-
fn calc_deps_of_libtest<'a, 'cfg>(
128-
mut state: &mut State<'a, 'cfg>,
129-
std_roots: &[Unit<'a>],
130-
roots: &[Unit<'a>],
131-
) -> CargoResult<Option<UnitGraph<'a>>> {
132-
// Conditionally include libtest.
133-
if std_roots.is_empty()
134-
|| !roots
135-
.iter()
136-
.any(|unit| unit.mode.is_rustc_test() && unit.target.harness())
137-
{
138-
return Ok(None);
139-
}
140-
state.is_std = true;
141-
let test_id = state.resolve().query("test")?;
142-
let test_pkg = state.get(test_id)?.expect("test doesn't need downloading");
143-
let test_target = test_pkg
144-
.targets()
145-
.iter()
146-
.find(|t| t.is_lib())
147-
.expect("test has a lib");
148-
let test_unit = new_unit(
149-
state,
150-
test_pkg,
151-
test_target,
152-
UnitFor::new_normal(),
153-
Kind::Target,
154-
CompileMode::Build,
155-
);
156-
let res = calc_deps_of_std(state, &[test_unit])?;
157-
state.is_std = false;
158-
Ok(res)
159-
}
160-
161-
/// `proc_macro` has an implicit dependency on `std`, add it.
162-
fn fixup_proc_macro<'a>(std_unit_deps: &mut UnitGraph<'a>) {
163-
// Synthesize a dependency from proc_macro -> std.
164-
//
165-
// This is a gross hack. This wouldn't be necessary with `--sysroot`. See
166-
// also libtest below.
167-
if let Some(std) = std_unit_deps
168-
.keys()
169-
.find(|unit| unit.pkg.name().as_str() == "std" && unit.target.is_lib())
170-
.cloned()
171-
{
172-
for (unit, deps) in std_unit_deps.iter_mut() {
173-
if unit.pkg.name().as_str() == "proc_macro" {
174-
deps.push(UnitDep {
175-
unit: std,
176-
unit_for: UnitFor::new_normal(),
177-
extern_crate_name: InternedString::new("std"),
178-
public: true,
179-
});
180-
}
181-
}
182-
}
183-
}
184-
185-
/// Add libtest as a dependency of any test unit that needs it.
186-
fn attach_std_test<'a, 'cfg>(
187-
state: &mut State<'a, 'cfg>,
188-
mut libtest_unit_deps: UnitGraph<'a>,
189-
std_unit_deps: &UnitGraph<'a>,
190-
) {
191-
// Attach libtest to any test unit.
192-
let (test_unit, test_deps) = libtest_unit_deps
193-
.iter_mut()
194-
.find(|(k, _v)| k.pkg.name().as_str() == "test" && k.target.is_lib())
195-
.expect("test in deps");
196-
for (unit, deps) in state.unit_dependencies.iter_mut() {
197-
if unit.mode.is_rustc_test() && unit.target.harness() {
198-
// `public` here will need to be driven by toml declaration.
199-
deps.push(UnitDep {
200-
unit: *test_unit,
201-
unit_for: UnitFor::new_normal(),
202-
extern_crate_name: test_unit.pkg.name(),
203-
public: false,
204-
});
205-
}
206-
}
207-
208-
// Synthesize a dependency from libtest -> libc.
209-
//
210-
// This is a gross hack. In theory, libtest should explicitly list this,
211-
// but presumably it would cause libc to be built again when it just uses
212-
// the version from sysroot. This won't be necessary if Cargo uses
213-
// `--sysroot`.
214-
let libc_unit = std_unit_deps
215-
.keys()
216-
.find(|unit| unit.pkg.name().as_str() == "libc" && unit.target.is_lib())
217-
.expect("libc in deps");
218-
let libc_dep = UnitDep {
219-
unit: *libc_unit,
220-
unit_for: UnitFor::new_normal(),
221-
extern_crate_name: InternedString::new(&libc_unit.target.crate_name()),
222-
public: false,
223-
};
224-
test_deps.push(libc_dep);
225-
226-
// And also include the dependencies of libtest itself.
227-
for (unit, deps) in libtest_unit_deps.into_iter() {
228-
if let Some(other_unit) = state.unit_dependencies.insert(unit, deps) {
229-
panic!(
230-
"libtest unit collision with existing unit: {:?}",
231-
other_unit
232-
);
233-
}
234-
}
235-
}
236-
237120
/// Add the standard library units to the `unit_dependencies`.
238121
fn attach_std_deps<'a, 'cfg>(
239122
state: &mut State<'a, 'cfg>,
@@ -647,29 +530,7 @@ fn check_or_build_mode(mode: CompileMode, target: &Target) -> CompileMode {
647530
}
648531
}
649532

650-
fn new_unit<'a>(
651-
state: &State<'a, '_>,
652-
pkg: &'a Package,
653-
target: &'a Target,
654-
unit_for: UnitFor,
655-
kind: Kind,
656-
mode: CompileMode,
657-
) -> Unit<'a> {
658-
let profile = state.bcx.profiles.get_profile(
659-
pkg.package_id(),
660-
state.bcx.ws.is_member(pkg),
661-
unit_for,
662-
mode,
663-
state.bcx.build_config.release,
664-
);
665-
666-
let features = state.resolve().features_sorted(pkg.package_id());
667-
state
668-
.bcx
669-
.units
670-
.intern(pkg, target, profile, kind, mode, features)
671-
}
672-
533+
/// Create a new Unit for a dependency from `parent` to `pkg` and `target`.
673534
fn new_unit_dep<'a>(
674535
state: &State<'a, '_>,
675536
parent: &Unit<'a>,

0 commit comments

Comments
 (0)