Skip to content

Commit 3cbf141

Browse files
committed
Lift up workspace rlibs while building
I think the condition here was slightly off from before, so invert it subtly to get what we want, lifting up anything in a workspace or binaries otherwise. Closes #3432
1 parent 154a30b commit 3cbf141

File tree

2 files changed

+34
-2
lines changed

2 files changed

+34
-2
lines changed

src/cargo/ops/cargo_rustc/context.rs

+3-2
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ impl<'a, 'cfg> Context<'a, 'cfg> {
224224

225225
map.insert(crate_type.to_string(), Some((prefix.to_string(), suffix.to_string())));
226226
}
227-
227+
228228
let cfg = if has_cfg {
229229
Some(try!(lines.map(Cfg::from_str).collect()))
230230
} else {
@@ -448,7 +448,8 @@ impl<'a, 'cfg> Context<'a, 'cfg> {
448448
// we don't want to link it up.
449449
if src_dir.ends_with("deps") {
450450
// Don't lift up library dependencies
451-
if self.ws.members().find(|&p| p != unit.pkg).is_some() && !unit.target.is_bin() {
451+
if self.ws.members().find(|&p| p == unit.pkg).is_none() &&
452+
!unit.target.is_bin() {
452453
None
453454
} else {
454455
Some((

tests/path.rs

+31
Original file line numberDiff line numberDiff line change
@@ -979,3 +979,34 @@ location searched: [..]
979979
version required: *
980980
"));
981981
}
982+
983+
#[test]
984+
fn workspace_produces_rlib() {
985+
let p = project("foo")
986+
.file("Cargo.toml", r#"
987+
[project]
988+
name = "top"
989+
version = "0.5.0"
990+
authors = []
991+
992+
[workspace]
993+
994+
[dependencies]
995+
foo = { path = "foo" }
996+
"#)
997+
.file("src/lib.rs", "")
998+
.file("foo/Cargo.toml", r#"
999+
[project]
1000+
name = "foo"
1001+
version = "0.5.0"
1002+
authors = []
1003+
"#)
1004+
.file("foo/src/lib.rs", "");
1005+
p.build();
1006+
1007+
assert_that(p.cargo("build"), execs().with_status(0));
1008+
1009+
assert_that(&p.root().join("target/debug/libtop.rlib"), existing_file());
1010+
assert_that(&p.root().join("target/debug/libfoo.rlib"), existing_file());
1011+
1012+
}

0 commit comments

Comments
 (0)