Skip to content

Commit 8dad57e

Browse files
committed
Add support for cargo --explain
The error messages in the compiler are being tweaked and will likely drop the `rustc --explain` part of the error message in favor of `--explain`. In that case you're expected to basically take whatever tool you're using and pass `--explain` to it with an error code, so let's add it to Cargo as well!
1 parent bf3f531 commit 8dad57e

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

src/bin/cargo.rs

+9
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ use cargo::core::shell::Verbosity;
1515
use cargo::execute_main_without_stdin;
1616
use cargo::util::ChainError;
1717
use cargo::util::{self, CliResult, lev_distance, Config, human, CargoResult};
18+
use cargo::util::process_builder::process;
1819

1920
#[derive(RustcDecodable)]
2021
pub struct Flags {
@@ -23,6 +24,7 @@ pub struct Flags {
2324
flag_verbose: Option<bool>,
2425
flag_quiet: Option<bool>,
2526
flag_color: Option<String>,
27+
flag_explain: Option<String>,
2628
arg_command: String,
2729
arg_args: Vec<String>,
2830
}
@@ -38,6 +40,7 @@ Options:
3840
-h, --help Display this message
3941
-V, --version Print version info and exit
4042
--list List installed commands
43+
--explain CODE Run `rustc --explain CODE`
4144
-v, --verbose Use verbose output
4245
-q, --quiet No output printed to stdout
4346
--color WHEN Coloring: auto, always, never
@@ -129,6 +132,12 @@ fn execute(flags: Flags, config: &Config) -> CliResult<Option<()>> {
129132
return Ok(None)
130133
}
131134

135+
if let Some(ref code) = flags.flag_explain {
136+
try!(process(config.rustc()).arg("--explain").arg(code).exec()
137+
.map_err(human));
138+
return Ok(None)
139+
}
140+
132141
let args = match &flags.arg_command[..] {
133142
// For the commands `cargo` and `cargo help`, re-execute ourselves as
134143
// `cargo -h` so we can go through the normal process of printing the

tests/test_cargo.rs

+5
Original file line numberDiff line numberDiff line change
@@ -162,3 +162,8 @@ test!(cargo_help {
162162
assert_that(cargo_process().arg("help").arg("help"),
163163
execs().with_status(0));
164164
});
165+
166+
test!(explain {
167+
assert_that(cargo_process().arg("--explain").arg("E0001"),
168+
execs().with_status(0));
169+
});

0 commit comments

Comments
 (0)