Skip to content

Commit 2cd3c86

Browse files
author
Sondre Lefsaker
committed
Suggest adding flags to filter the package in the error message
1 parent 98c0e2d commit 2cd3c86

File tree

2 files changed

+13
-8
lines changed

2 files changed

+13
-8
lines changed

src/cargo/ops/cargo_compile.rs

+6-6
Original file line numberDiff line numberDiff line change
@@ -168,16 +168,16 @@ pub fn compile_pkg(package: &Package, options: &CompileOptions)
168168
let targets = try!(generate_targets(to_build, mode, filter, release));
169169

170170
let target_with_args = match *target_rustc_args {
171-
Some(args) => {
172-
if targets.len() > 1 {
173-
return Err(human("extra arguments to `rustc` can only be \
174-
invoked for one target"))
175-
}
171+
Some(args) if targets.len() == 1 => {
176172
let (target, profile) = targets[0];
177173
let mut profile = profile.clone();
178174
profile.rustc_args = Some(args.to_vec());
179175
Some((target, profile))
180-
},
176+
}
177+
Some(_) =>
178+
return Err(human("extra arguments to `rustc` can only be passed to one target, \
179+
consider filtering\nthe package by passing e.g. `--lib` or \
180+
`--bin NAME` to specify a single target")),
181181
None => None,
182182
};
183183

tests/test_cargo_rustc.rs

+7-2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ use hamcrest::{assert_that};
66
fn setup() {
77
}
88

9+
fn cargo_rustc_error() -> &'static str {
10+
"extra arguments to `rustc` can only be passed to one target, consider filtering\n\
11+
the package by passing e.g. `--lib` or `--bin NAME` to specify a single target"
12+
}
13+
914
test!(build_lib_for_foo {
1015
let p = project("foo")
1116
.file("Cargo.toml", r#"
@@ -118,7 +123,7 @@ test!(fails_when_trying_to_build_main_and_lib_with_args {
118123
.arg("--").arg("-Z").arg("unstable-options"),
119124
execs()
120125
.with_status(101)
121-
.with_stderr("extra arguments to `rustc` can only be invoked for one target"));
126+
.with_stderr(cargo_rustc_error()));
122127
});
123128

124129
test!(build_with_args_to_one_of_multiple_binaries {
@@ -178,7 +183,7 @@ test!(fails_with_args_to_all_binaries {
178183
.arg("--").arg("-Z").arg("unstable-options"),
179184
execs()
180185
.with_status(101)
181-
.with_stderr("extra arguments to `rustc` can only be invoked for one target"));
186+
.with_stderr(cargo_rustc_error()));
182187
});
183188

184189
test!(build_with_args_to_one_of_multiple_tests {

0 commit comments

Comments
 (0)