Skip to content

Commit 71ff274

Browse files
committed
Allow specifying profiles to cargo rustc
This should allow compiling the specified target in the various profiles that are available to it, e.g. bench or test in addition to the standard dev. Closes #2120
1 parent 2cdeb07 commit 71ff274

File tree

2 files changed

+46
-4
lines changed

2 files changed

+46
-4
lines changed

src/bin/rustc.rs

+14-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
use std::env;
22

3-
use cargo::ops::CompileOptions;
3+
use cargo::ops::{CompileOptions, CompileMode};
44
use cargo::ops;
55
use cargo::util::important_paths::{find_root_manifest_for_wd};
6-
use cargo::util::{CliResult, Config};
6+
use cargo::util::{CliResult, CliError, Config};
77

88
#[derive(RustcDecodable)]
99
struct Options {
@@ -23,6 +23,7 @@ struct Options {
2323
flag_example: Vec<String>,
2424
flag_test: Vec<String>,
2525
flag_bench: Vec<String>,
26+
flag_profile: Option<String>,
2627
}
2728

2829
pub const USAGE: &'static str = "
@@ -41,6 +42,7 @@ Options:
4142
--test NAME Build only the specified test target
4243
--bench NAME Build only the specified benchmark target
4344
--release Build artifacts in release mode, with optimizations
45+
--profile PROFILE Profile to build the selected target for
4446
--features FEATURES Features to compile for the package
4547
--no-default-features Do not compile default features for the package
4648
--target TRIPLE Target triple which compiles will be for
@@ -69,6 +71,15 @@ pub fn execute(options: Options, config: &Config) -> CliResult<Option<()>> {
6971

7072
let root = try!(find_root_manifest_for_wd(options.flag_manifest_path,
7173
config.cwd()));
74+
let mode = match options.flag_profile.as_ref().map(|t| &t[..]) {
75+
Some("dev") | None => CompileMode::Build,
76+
Some("test") => CompileMode::Test,
77+
Some("bench") => CompileMode::Bench,
78+
Some(mode) => {
79+
return Err(CliError::new(&format!("unknown profile: `{}`, use dev,
80+
test, or bench", mode), 101))
81+
}
82+
};
7283

7384
let opts = CompileOptions {
7485
config: config,
@@ -78,7 +89,7 @@ pub fn execute(options: Options, config: &Config) -> CliResult<Option<()>> {
7889
no_default_features: options.flag_no_default_features,
7990
spec: &options.flag_package.map_or(Vec::new(), |s| vec![s]),
8091
exec_engine: None,
81-
mode: ops::CompileMode::Build,
92+
mode: mode,
8293
release: options.flag_release,
8394
filter: ops::CompileFilter::new(options.flag_lib,
8495
&options.flag_bin,

tests/test_cargo_rustc.rs

+32-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
use std::path::MAIN_SEPARATOR as SEP;
2+
23
use support::{execs, project};
34
use support::{COMPILING, RUNNING};
4-
use hamcrest::{assert_that};
55

6+
use hamcrest::{assert_that, existing_file};
67

78
fn setup() {
89
}
@@ -353,3 +354,33 @@ Invalid arguments.
353354
Usage:
354355
cargo rustc [options] [--] [<opts>...]".to_string()));
355356
});
357+
358+
test!(rustc_with_other_profile {
359+
let foo = project("foo")
360+
.file("Cargo.toml", r#"
361+
[package]
362+
name = "foo"
363+
version = "0.0.1"
364+
authors = []
365+
366+
[dev-dependencies]
367+
a = { path = "a" }
368+
"#)
369+
.file("src/main.rs", r#"
370+
#[cfg(test)] extern crate a;
371+
372+
#[test]
373+
fn foo() {}
374+
"#)
375+
.file("a/Cargo.toml", r#"
376+
[package]
377+
name = "a"
378+
version = "0.1.0"
379+
authors = []
380+
"#)
381+
.file("a/src/lib.rs", "");
382+
foo.build();
383+
384+
assert_that(foo.cargo("rustc").arg("--profile").arg("test"),
385+
execs().with_status(0));
386+
});

0 commit comments

Comments
 (0)