1
1
use std:: env;
2
2
3
- use cargo:: ops:: CompileOptions ;
3
+ use cargo:: ops:: { CompileOptions , CompileMode } ;
4
4
use cargo:: ops;
5
5
use cargo:: util:: important_paths:: { find_root_manifest_for_wd} ;
6
- use cargo:: util:: { CliResult , Config } ;
6
+ use cargo:: util:: { CliResult , CliError , Config } ;
7
7
8
8
#[ derive( RustcDecodable ) ]
9
9
struct Options {
@@ -23,6 +23,7 @@ struct Options {
23
23
flag_example : Vec < String > ,
24
24
flag_test : Vec < String > ,
25
25
flag_bench : Vec < String > ,
26
+ flag_profile : Option < String > ,
26
27
}
27
28
28
29
pub const USAGE : & ' static str = "
@@ -41,6 +42,7 @@ Options:
41
42
--test NAME Build only the specified test target
42
43
--bench NAME Build only the specified benchmark target
43
44
--release Build artifacts in release mode, with optimizations
45
+ --profile PROFILE Profile to build the selected target for
44
46
--features FEATURES Features to compile for the package
45
47
--no-default-features Do not compile default features for the package
46
48
--target TRIPLE Target triple which compiles will be for
@@ -69,6 +71,15 @@ pub fn execute(options: Options, config: &Config) -> CliResult<Option<()>> {
69
71
70
72
let root = try!( find_root_manifest_for_wd ( options. flag_manifest_path ,
71
73
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
+ } ;
72
83
73
84
let opts = CompileOptions {
74
85
config : config,
@@ -78,7 +89,7 @@ pub fn execute(options: Options, config: &Config) -> CliResult<Option<()>> {
78
89
no_default_features : options. flag_no_default_features ,
79
90
spec : & options. flag_package . map_or ( Vec :: new ( ) , |s| vec ! [ s] ) ,
80
91
exec_engine : None ,
81
- mode : ops :: CompileMode :: Build ,
92
+ mode : mode ,
82
93
release : options. flag_release ,
83
94
filter : ops:: CompileFilter :: new ( options. flag_lib ,
84
95
& options. flag_bin ,
0 commit comments