Skip to content

Commit 5c5ea78

Browse files
rukaielchukc
authored andcommitted
Fix panic when running cargo tree on a package with a cross compiled bindep
1 parent ab71ba9 commit 5c5ea78

File tree

2 files changed

+32
-11
lines changed

2 files changed

+32
-11
lines changed

src/cargo/ops/tree/graph.rs

+26-4
Original file line numberDiff line numberDiff line change
@@ -391,10 +391,32 @@ fn add_pkg(
391391
let dep_pkg = graph.package_map[&dep_id];
392392

393393
for dep in deps {
394-
let dep_features_for = if dep.is_build() || dep_pkg.proc_macro() {
395-
FeaturesFor::HostDep
396-
} else {
397-
features_for
394+
let dep_features_for = match dep
395+
.artifact()
396+
.and_then(|artifact| artifact.target())
397+
.and_then(|target| target.to_resolved_compile_target(requested_kind))
398+
{
399+
// Dependency has a `{ …, target = <triple> }`
400+
Some(target) => FeaturesFor::ArtifactDep(target),
401+
// Get the information of the dependent crate from `features_for`.
402+
// If a dependent crate is
403+
//
404+
// * specified as an artifact dep with a `target`, or
405+
// * a host dep,
406+
//
407+
// its transitive deps, including build-deps, need to be built on that target.
408+
None if features_for != FeaturesFor::default() => features_for,
409+
// Dependent crate is a normal dep, then back to old rules:
410+
//
411+
// * normal deps, dev-deps -> inherited target
412+
// * build-deps -> host
413+
None => {
414+
if dep.is_build() || dep_pkg.proc_macro() {
415+
FeaturesFor::HostDep
416+
} else {
417+
features_for
418+
}
419+
}
398420
};
399421
let dep_index = add_pkg(
400422
graph,

tests/testsuite/artifact_dep.rs

+6-7
Original file line numberDiff line numberDiff line change
@@ -1568,15 +1568,14 @@ fn artifact_dep_target_specified() {
15681568
.with_status(0)
15691569
.run();
15701570

1571-
// TODO: This command currently fails due to a bug in cargo but it should be fixed so that it succeeds in the future.
15721571
p.cargo("tree -Z bindeps")
15731572
.masquerade_as_nightly_cargo(&["bindeps"])
1574-
.with_stdout_data("")
1575-
.with_stderr_data(r#"...
1576-
[..]did not find features for (PackageId { name: "bindep", version: "0.0.0", source: "[..]" }, NormalOrDev) within activated_features:[..]
1577-
...
1578-
"#)
1579-
.with_status(101)
1573+
.with_stdout_data(str![[r#"
1574+
foo v0.0.0 ([ROOT]/foo)
1575+
└── bindep v0.0.0 ([ROOT]/foo/bindep)
1576+
1577+
"#]])
1578+
.with_status(0)
15801579
.run();
15811580
}
15821581

0 commit comments

Comments
 (0)