]> git.lizzy.rs Git - rust.git/blob - src/librustc/session/config.rs
rollup merge of #20736: akiss77/pr-u8-c_char
[rust.git] / src / librustc / session / config.rs
1 // Copyright 2014 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 //! Contains infrastructure for configuring the compiler, including parsing
12 //! command line options.
13
14 pub use self::EntryFnType::*;
15 pub use self::CrateType::*;
16 pub use self::Passes::*;
17 pub use self::OptLevel::*;
18 pub use self::OutputType::*;
19 pub use self::DebugInfoLevel::*;
20
21 use session::{early_error, early_warn, Session};
22 use session::search_paths::SearchPaths;
23
24 use rustc_back::target::Target;
25 use lint;
26 use metadata::cstore;
27
28 use syntax::ast;
29 use syntax::ast::{IntTy, UintTy};
30 use syntax::attr;
31 use syntax::attr::AttrMetaMethods;
32 use syntax::diagnostic::{ColorConfig, Auto, Always, Never, SpanHandler};
33 use syntax::parse;
34 use syntax::parse::token::InternedString;
35
36 use std::collections::HashMap;
37 use std::collections::hash_map::Entry::{Occupied, Vacant};
38 use getopts;
39 use std::fmt;
40
41 use llvm;
42
43 pub struct Config {
44     pub target: Target,
45     pub int_type: IntTy,
46     pub uint_type: UintTy,
47 }
48
49 #[derive(Clone, Copy, PartialEq)]
50 pub enum OptLevel {
51     No, // -O0
52     Less, // -O1
53     Default, // -O2
54     Aggressive // -O3
55 }
56
57 #[derive(Clone, Copy, PartialEq)]
58 pub enum DebugInfoLevel {
59     NoDebugInfo,
60     LimitedDebugInfo,
61     FullDebugInfo,
62 }
63
64 #[derive(Clone, Copy, PartialEq, PartialOrd, Ord, Eq)]
65 pub enum OutputType {
66     OutputTypeBitcode,
67     OutputTypeAssembly,
68     OutputTypeLlvmAssembly,
69     OutputTypeObject,
70     OutputTypeExe,
71     OutputTypeDepInfo,
72 }
73
74 #[derive(Clone)]
75 pub struct Options {
76     // The crate config requested for the session, which may be combined
77     // with additional crate configurations during the compile process
78     pub crate_types: Vec<CrateType>,
79
80     pub gc: bool,
81     pub optimize: OptLevel,
82     pub debuginfo: DebugInfoLevel,
83     pub lint_opts: Vec<(String, lint::Level)>,
84     pub describe_lints: bool,
85     pub output_types: Vec<OutputType> ,
86     // This was mutable for rustpkg, which updates search paths based on the
87     // parsed code. It remains mutable in case its replacements wants to use
88     // this.
89     pub search_paths: SearchPaths,
90     pub libs: Vec<(String, cstore::NativeLibraryKind)>,
91     pub maybe_sysroot: Option<Path>,
92     pub target_triple: String,
93     // User-specified cfg meta items. The compiler itself will add additional
94     // items to the crate config, and during parsing the entire crate config
95     // will be added to the crate AST node.  This should not be used for
96     // anything except building the full crate config prior to parsing.
97     pub cfg: ast::CrateConfig,
98     pub test: bool,
99     pub parse_only: bool,
100     pub no_trans: bool,
101     pub no_analysis: bool,
102     pub debugging_opts: u64,
103     /// Whether to write dependency files. It's (enabled, optional filename).
104     pub write_dependency_info: (bool, Option<Path>),
105     pub prints: Vec<PrintRequest>,
106     pub cg: CodegenOptions,
107     pub color: ColorConfig,
108     pub show_span: Option<String>,
109     pub externs: HashMap<String, Vec<String>>,
110     pub crate_name: Option<String>,
111     /// An optional name to use as the crate for std during std injection,
112     /// written `extern crate std = "name"`. Default to "std". Used by
113     /// out-of-tree drivers.
114     pub alt_std_name: Option<String>,
115     /// Indicates how the compiler should treat unstable features
116     pub unstable_features: UnstableFeatures
117 }
118
119 #[derive(Clone, Copy)]
120 pub enum UnstableFeatures {
121     /// Hard errors for unstable features are active, as on
122     /// beta/stable channels.
123     Disallow,
124     /// Use the default lint levels
125     Default,
126     /// Errors are bypassed for bootstrapping. This is required any time
127     /// during the build that feature-related lints are set to warn or above
128     /// because the build turns on warnings-as-errors and uses lots of unstable
129     /// features. As a result, this this is always required for building Rust
130     /// itself.
131     Cheat
132 }
133
134 #[derive(Clone, PartialEq, Eq)]
135 #[allow(missing_copy_implementations)]
136 pub enum PrintRequest {
137     FileNames,
138     Sysroot,
139     CrateName,
140 }
141
142 pub enum Input {
143     /// Load source from file
144     File(Path),
145     /// The string is the source
146     Str(String)
147 }
148
149 impl Input {
150     pub fn filestem(&self) -> String {
151         match *self {
152             Input::File(ref ifile) => ifile.filestem_str().unwrap().to_string(),
153             Input::Str(_) => "rust_out".to_string(),
154         }
155     }
156 }
157
158 #[derive(Clone)]
159 pub struct OutputFilenames {
160     pub out_directory: Path,
161     pub out_filestem: String,
162     pub single_output_file: Option<Path>,
163     pub extra: String,
164 }
165
166 impl OutputFilenames {
167     pub fn path(&self, flavor: OutputType) -> Path {
168         match self.single_output_file {
169             Some(ref path) => return path.clone(),
170             None => {}
171         }
172         self.temp_path(flavor)
173     }
174
175     pub fn temp_path(&self, flavor: OutputType) -> Path {
176         let base = self.out_directory.join(self.filestem());
177         match flavor {
178             OutputTypeBitcode => base.with_extension("bc"),
179             OutputTypeAssembly => base.with_extension("s"),
180             OutputTypeLlvmAssembly => base.with_extension("ll"),
181             OutputTypeObject => base.with_extension("o"),
182             OutputTypeDepInfo => base.with_extension("d"),
183             OutputTypeExe => base,
184         }
185     }
186
187     pub fn with_extension(&self, extension: &str) -> Path {
188         self.out_directory.join(self.filestem()).with_extension(extension)
189     }
190
191     pub fn filestem(&self) -> String {
192         format!("{}{}", self.out_filestem, self.extra)
193     }
194 }
195
196 pub fn host_triple() -> &'static str {
197     // Get the host triple out of the build environment. This ensures that our
198     // idea of the host triple is the same as for the set of libraries we've
199     // actually built.  We can't just take LLVM's host triple because they
200     // normalize all ix86 architectures to i386.
201     //
202     // Instead of grabbing the host triple (for the current host), we grab (at
203     // compile time) the target triple that this rustc is built with and
204     // calling that (at runtime) the host triple.
205     (option_env!("CFG_COMPILER_HOST_TRIPLE")).
206         expect("CFG_COMPILER_HOST_TRIPLE")
207 }
208
209 /// Some reasonable defaults
210 pub fn basic_options() -> Options {
211     Options {
212         crate_types: Vec::new(),
213         gc: false,
214         optimize: No,
215         debuginfo: NoDebugInfo,
216         lint_opts: Vec::new(),
217         describe_lints: false,
218         output_types: Vec::new(),
219         search_paths: SearchPaths::new(),
220         maybe_sysroot: None,
221         target_triple: host_triple().to_string(),
222         cfg: Vec::new(),
223         test: false,
224         parse_only: false,
225         no_trans: false,
226         no_analysis: false,
227         debugging_opts: 0,
228         write_dependency_info: (false, None),
229         prints: Vec::new(),
230         cg: basic_codegen_options(),
231         color: Auto,
232         show_span: None,
233         externs: HashMap::new(),
234         crate_name: None,
235         alt_std_name: None,
236         libs: Vec::new(),
237         unstable_features: UnstableFeatures::Disallow
238     }
239 }
240
241 // The type of entry function, so
242 // users can have their own entry
243 // functions that don't start a
244 // scheduler
245 #[derive(Copy, PartialEq)]
246 pub enum EntryFnType {
247     EntryMain,
248     EntryStart,
249     EntryNone,
250 }
251
252 #[derive(Copy, PartialEq, PartialOrd, Clone, Ord, Eq, Hash)]
253 pub enum CrateType {
254     CrateTypeExecutable,
255     CrateTypeDylib,
256     CrateTypeRlib,
257     CrateTypeStaticlib,
258 }
259
260 macro_rules! debugging_opts {
261     ([ $opt:ident ] $cnt:expr ) => (
262         pub const $opt: u64 = 1 << $cnt;
263     );
264     ([ $opt:ident, $($rest:ident),* ] $cnt:expr ) => (
265         pub const $opt: u64 = 1 << $cnt;
266         debugging_opts! { [ $($rest),* ] $cnt + 1 }
267     )
268 }
269
270 debugging_opts! {
271     [
272         VERBOSE,
273         TIME_PASSES,
274         COUNT_LLVM_INSNS,
275         TIME_LLVM_PASSES,
276         TRANS_STATS,
277         ASM_COMMENTS,
278         NO_VERIFY,
279         BORROWCK_STATS,
280         NO_LANDING_PADS,
281         DEBUG_LLVM,
282         COUNT_TYPE_SIZES,
283         META_STATS,
284         GC,
285         PRINT_LINK_ARGS,
286         PRINT_LLVM_PASSES,
287         AST_JSON,
288         AST_JSON_NOEXPAND,
289         LS,
290         SAVE_ANALYSIS,
291         PRINT_MOVE_FRAGMENTS,
292         FLOWGRAPH_PRINT_LOANS,
293         FLOWGRAPH_PRINT_MOVES,
294         FLOWGRAPH_PRINT_ASSIGNS,
295         FLOWGRAPH_PRINT_ALL,
296         PRINT_REGION_GRAPH,
297         PARSE_ONLY,
298         NO_TRANS,
299         NO_ANALYSIS,
300         UNSTABLE_OPTIONS,
301         PRINT_ENUM_SIZES
302     ]
303     0
304 }
305
306 pub fn debugging_opts_map() -> Vec<(&'static str, &'static str, u64)> {
307     vec![("verbose", "in general, enable more debug printouts", VERBOSE),
308      ("time-passes", "measure time of each rustc pass", TIME_PASSES),
309      ("count-llvm-insns", "count where LLVM \
310                            instrs originate", COUNT_LLVM_INSNS),
311      ("time-llvm-passes", "measure time of each LLVM pass",
312       TIME_LLVM_PASSES),
313      ("trans-stats", "gather trans statistics", TRANS_STATS),
314      ("asm-comments", "generate comments into the assembly (may change behavior)",
315       ASM_COMMENTS),
316      ("no-verify", "skip LLVM verification", NO_VERIFY),
317      ("borrowck-stats", "gather borrowck statistics",  BORROWCK_STATS),
318      ("no-landing-pads", "omit landing pads for unwinding",
319       NO_LANDING_PADS),
320      ("debug-llvm", "enable debug output from LLVM", DEBUG_LLVM),
321      ("count-type-sizes", "count the sizes of aggregate types",
322       COUNT_TYPE_SIZES),
323      ("meta-stats", "gather metadata statistics", META_STATS),
324      ("print-link-args", "Print the arguments passed to the linker",
325       PRINT_LINK_ARGS),
326      ("gc", "Garbage collect shared data (experimental)", GC),
327      ("print-llvm-passes",
328       "Prints the llvm optimization passes being run",
329       PRINT_LLVM_PASSES),
330      ("ast-json", "Print the AST as JSON and halt", AST_JSON),
331      ("ast-json-noexpand", "Print the pre-expansion AST as JSON and halt", AST_JSON_NOEXPAND),
332      ("ls", "List the symbols defined by a library crate", LS),
333      ("save-analysis", "Write syntax and type analysis information \
334                         in addition to normal output", SAVE_ANALYSIS),
335      ("print-move-fragments", "Print out move-fragment data for every fn",
336       PRINT_MOVE_FRAGMENTS),
337      ("flowgraph-print-loans", "Include loan analysis data in \
338                        --pretty flowgraph output", FLOWGRAPH_PRINT_LOANS),
339      ("flowgraph-print-moves", "Include move analysis data in \
340                        --pretty flowgraph output", FLOWGRAPH_PRINT_MOVES),
341      ("flowgraph-print-assigns", "Include assignment analysis data in \
342                        --pretty flowgraph output", FLOWGRAPH_PRINT_ASSIGNS),
343      ("flowgraph-print-all", "Include all dataflow analysis data in \
344                        --pretty flowgraph output", FLOWGRAPH_PRINT_ALL),
345      ("print-region-graph", "Prints region inference graph. \
346                              Use with RUST_REGION_GRAPH=help for more info",
347       PRINT_REGION_GRAPH),
348      ("parse-only", "Parse only; do not compile, assemble, or link", PARSE_ONLY),
349      ("no-trans", "Run all passes except translation; no output", NO_TRANS),
350      ("no-analysis", "Parse and expand the source, but run no analysis and",
351       NO_ANALYSIS),
352      ("unstable-options", "Adds unstable command line options to rustc interface",
353       UNSTABLE_OPTIONS),
354      ("print-enum-sizes", "Print the size of enums and their variants", PRINT_ENUM_SIZES),
355     ]
356 }
357
358 #[derive(Clone)]
359 pub enum Passes {
360     SomePasses(Vec<String>),
361     AllPasses,
362 }
363
364 impl Passes {
365     pub fn is_empty(&self) -> bool {
366         match *self {
367             SomePasses(ref v) => v.is_empty(),
368             AllPasses => false,
369         }
370     }
371 }
372
373 /// Declare a macro that will define all CodegenOptions fields and parsers all
374 /// at once. The goal of this macro is to define an interface that can be
375 /// programmatically used by the option parser in order to initialize the struct
376 /// without hardcoding field names all over the place.
377 ///
378 /// The goal is to invoke this macro once with the correct fields, and then this
379 /// macro generates all necessary code. The main gotcha of this macro is the
380 /// cgsetters module which is a bunch of generated code to parse an option into
381 /// its respective field in the struct. There are a few hand-written parsers for
382 /// parsing specific types of values in this module.
383 macro_rules! cgoptions {
384     ($($opt:ident : $t:ty = ($init:expr, $parse:ident, $desc:expr)),* ,) =>
385 (
386     #[derive(Clone)]
387     pub struct CodegenOptions { $(pub $opt: $t),* }
388
389     pub fn basic_codegen_options() -> CodegenOptions {
390         CodegenOptions { $($opt: $init),* }
391     }
392
393     pub type CodegenSetter = fn(&mut CodegenOptions, v: Option<&str>) -> bool;
394     pub const CG_OPTIONS: &'static [(&'static str, CodegenSetter,
395                                      Option<&'static str>, &'static str)] =
396         &[ $( (stringify!($opt), cgsetters::$opt, cg_type_descs::$parse, $desc) ),* ];
397
398     #[allow(non_upper_case_globals)]
399     mod cg_type_descs {
400         pub const parse_bool: Option<&'static str> = None;
401         pub const parse_opt_bool: Option<&'static str> = None;
402         pub const parse_string: Option<&'static str> = Some("a string");
403         pub const parse_opt_string: Option<&'static str> = Some("a string");
404         pub const parse_list: Option<&'static str> = Some("a space-separated list of strings");
405         pub const parse_opt_list: Option<&'static str> = Some("a space-separated list of strings");
406         pub const parse_uint: Option<&'static str> = Some("a number");
407         pub const parse_passes: Option<&'static str> =
408             Some("a space-separated list of passes, or `all`");
409         pub const parse_opt_uint: Option<&'static str> =
410             Some("a number");
411     }
412
413     mod cgsetters {
414         use super::{CodegenOptions, Passes, SomePasses, AllPasses};
415
416         $(
417             pub fn $opt(cg: &mut CodegenOptions, v: Option<&str>) -> bool {
418                 $parse(&mut cg.$opt, v)
419             }
420         )*
421
422         fn parse_bool(slot: &mut bool, v: Option<&str>) -> bool {
423             match v {
424                 Some(..) => false,
425                 None => { *slot = true; true }
426             }
427         }
428
429         fn parse_opt_bool(slot: &mut Option<bool>, v: Option<&str>) -> bool {
430             match v {
431                 Some(..) => false,
432                 None => { *slot = Some(true); true }
433             }
434         }
435
436         fn parse_opt_string(slot: &mut Option<String>, v: Option<&str>) -> bool {
437             match v {
438                 Some(s) => { *slot = Some(s.to_string()); true },
439                 None => false,
440             }
441         }
442
443         fn parse_string(slot: &mut String, v: Option<&str>) -> bool {
444             match v {
445                 Some(s) => { *slot = s.to_string(); true },
446                 None => false,
447             }
448         }
449
450         fn parse_list(slot: &mut Vec<String>, v: Option<&str>)
451                       -> bool {
452             match v {
453                 Some(s) => {
454                     for s in s.words() {
455                         slot.push(s.to_string());
456                     }
457                     true
458                 },
459                 None => false,
460             }
461         }
462
463         fn parse_opt_list(slot: &mut Option<Vec<String>>, v: Option<&str>)
464                       -> bool {
465             match v {
466                 Some(s) => {
467                     let v = s.words().map(|s| s.to_string()).collect();
468                     *slot = Some(v);
469                     true
470                 },
471                 None => false,
472             }
473         }
474
475         fn parse_uint(slot: &mut uint, v: Option<&str>) -> bool {
476             match v.and_then(|s| s.parse()) {
477                 Some(i) => { *slot = i; true },
478                 None => false
479             }
480         }
481
482         fn parse_opt_uint(slot: &mut Option<uint>, v: Option<&str>) -> bool {
483             match v {
484                 Some(s) => { *slot = s.parse(); slot.is_some() }
485                 None => { *slot = None; true }
486             }
487         }
488
489         fn parse_passes(slot: &mut Passes, v: Option<&str>) -> bool {
490             match v {
491                 Some("all") => {
492                     *slot = AllPasses;
493                     true
494                 }
495                 v => {
496                     let mut passes = vec!();
497                     if parse_list(&mut passes, v) {
498                         *slot = SomePasses(passes);
499                         true
500                     } else {
501                         false
502                     }
503                 }
504             }
505         }
506     }
507 ) }
508
509 cgoptions! {
510     ar: Option<String> = (None, parse_opt_string,
511         "tool to assemble archives with"),
512     linker: Option<String> = (None, parse_opt_string,
513         "system linker to link outputs with"),
514     link_args: Option<Vec<String>> = (None, parse_opt_list,
515         "extra arguments to pass to the linker (space separated)"),
516     lto: bool = (false, parse_bool,
517         "perform LLVM link-time optimizations"),
518     target_cpu: Option<String> = (None, parse_opt_string,
519         "select target processor (llc -mcpu=help for details)"),
520     target_feature: String = ("".to_string(), parse_string,
521         "target specific attributes (llc -mattr=help for details)"),
522     passes: Vec<String> = (Vec::new(), parse_list,
523         "a list of extra LLVM passes to run (space separated)"),
524     llvm_args: Vec<String> = (Vec::new(), parse_list,
525         "a list of arguments to pass to llvm (space separated)"),
526     save_temps: bool = (false, parse_bool,
527         "save all temporary output files during compilation"),
528     rpath: bool = (false, parse_bool,
529         "set rpath values in libs/exes"),
530     no_prepopulate_passes: bool = (false, parse_bool,
531         "don't pre-populate the pass manager with a list of passes"),
532     no_vectorize_loops: bool = (false, parse_bool,
533         "don't run the loop vectorization optimization passes"),
534     no_vectorize_slp: bool = (false, parse_bool,
535         "don't run LLVM's SLP vectorization pass"),
536     soft_float: bool = (false, parse_bool,
537         "generate software floating point library calls"),
538     prefer_dynamic: bool = (false, parse_bool,
539         "prefer dynamic linking to static linking"),
540     no_integrated_as: bool = (false, parse_bool,
541         "use an external assembler rather than LLVM's integrated one"),
542     no_redzone: Option<bool> = (None, parse_opt_bool,
543         "disable the use of the redzone"),
544     relocation_model: Option<String> = (None, parse_opt_string,
545          "choose the relocation model to use (llc -relocation-model for details)"),
546     code_model: Option<String> = (None, parse_opt_string,
547          "choose the code model to use (llc -code-model for details)"),
548     metadata: Vec<String> = (Vec::new(), parse_list,
549          "metadata to mangle symbol names with"),
550     extra_filename: String = ("".to_string(), parse_string,
551          "extra data to put in each output filename"),
552     codegen_units: uint = (1, parse_uint,
553         "divide crate into N units to optimize in parallel"),
554     remark: Passes = (SomePasses(Vec::new()), parse_passes,
555         "print remarks for these optimization passes (space separated, or \"all\")"),
556     no_stack_check: bool = (false, parse_bool,
557         "disable checks for stack exhaustion (a memory-safety hazard!)"),
558     debuginfo: Option<uint> = (None, parse_opt_uint,
559         "debug info emission level, 0 = no debug info, 1 = line tables only, \
560          2 = full debug info with variable and type information"),
561     opt_level: Option<uint> = (None, parse_opt_uint,
562         "Optimize with possible levels 0-3"),
563 }
564
565 pub fn build_codegen_options(matches: &getopts::Matches) -> CodegenOptions
566 {
567     let mut cg = basic_codegen_options();
568     for option in matches.opt_strs("C").into_iter() {
569         let mut iter = option.splitn(1, '=');
570         let key = iter.next().unwrap();
571         let value = iter.next();
572         let option_to_lookup = key.replace("-", "_");
573         let mut found = false;
574         for &(candidate, setter, opt_type_desc, _) in CG_OPTIONS.iter() {
575             if option_to_lookup != candidate { continue }
576             if !setter(&mut cg, value) {
577                 match (value, opt_type_desc) {
578                     (Some(..), None) => {
579                         early_error(&format!("codegen option `{}` takes no \
580                                              value", key)[])
581                     }
582                     (None, Some(type_desc)) => {
583                         early_error(&format!("codegen option `{0}` requires \
584                                              {1} (-C {0}=<value>)",
585                                             key, type_desc)[])
586                     }
587                     (Some(value), Some(type_desc)) => {
588                         early_error(&format!("incorrect value `{}` for codegen \
589                                              option `{}` - {} was expected",
590                                              value, key, type_desc)[])
591                     }
592                     (None, None) => unreachable!()
593                 }
594             }
595             found = true;
596             break;
597         }
598         if !found {
599             early_error(&format!("unknown codegen option: `{}`",
600                                 key)[]);
601         }
602     }
603     return cg;
604 }
605
606 pub fn default_lib_output() -> CrateType {
607     CrateTypeRlib
608 }
609
610 pub fn default_configuration(sess: &Session) -> ast::CrateConfig {
611     use syntax::parse::token::intern_and_get_ident as intern;
612
613     let end = &sess.target.target.target_endian[];
614     let arch = &sess.target.target.arch[];
615     let wordsz = &sess.target.target.target_pointer_width[];
616     let os = &sess.target.target.target_os[];
617
618     let fam = match sess.target.target.options.is_like_windows {
619         true  => InternedString::new("windows"),
620         false => InternedString::new("unix")
621     };
622
623     let mk = attr::mk_name_value_item_str;
624     return vec!(// Target bindings.
625          attr::mk_word_item(fam.clone()),
626          mk(InternedString::new("target_os"), intern(os)),
627          mk(InternedString::new("target_family"), fam),
628          mk(InternedString::new("target_arch"), intern(arch)),
629          mk(InternedString::new("target_endian"), intern(end)),
630          mk(InternedString::new("target_pointer_width"),
631             intern(wordsz))
632     );
633 }
634
635 pub fn append_configuration(cfg: &mut ast::CrateConfig,
636                             name: InternedString) {
637     if !cfg.iter().any(|mi| mi.name() == name) {
638         cfg.push(attr::mk_word_item(name))
639     }
640 }
641
642 pub fn build_configuration(sess: &Session) -> ast::CrateConfig {
643     // Combine the configuration requested by the session (command line) with
644     // some default and generated configuration items
645     let default_cfg = default_configuration(sess);
646     let mut user_cfg = sess.opts.cfg.clone();
647     // If the user wants a test runner, then add the test cfg
648     if sess.opts.test {
649         append_configuration(&mut user_cfg, InternedString::new("test"))
650     }
651     let mut v = user_cfg.into_iter().collect::<Vec<_>>();
652     v.push_all(&default_cfg[]);
653     v
654 }
655
656 pub fn build_target_config(opts: &Options, sp: &SpanHandler) -> Config {
657     let target = match Target::search(&opts.target_triple[]) {
658         Ok(t) => t,
659         Err(e) => {
660             sp.handler().fatal((format!("Error loading target specification: {}", e)).as_slice());
661     }
662     };
663
664     let (int_type, uint_type) = match &target.target_pointer_width[] {
665         "32" => (ast::TyI32, ast::TyU32),
666         "64" => (ast::TyI64, ast::TyU64),
667         w    => sp.handler().fatal(&format!("target specification was invalid: unrecognized \
668                                             target-word-size {}", w)[])
669     };
670
671     Config {
672         target: target,
673         int_type: int_type,
674         uint_type: uint_type,
675     }
676 }
677
678 /// Returns the "short" subset of the stable rustc command line options.
679 pub fn short_optgroups() -> Vec<getopts::OptGroup> {
680     rustc_short_optgroups().into_iter()
681         .filter(|g|g.is_stable())
682         .map(|g|g.opt_group)
683         .collect()
684 }
685
686 /// Returns all of the stable rustc command line options.
687 pub fn optgroups() -> Vec<getopts::OptGroup> {
688     rustc_optgroups().into_iter()
689         .filter(|g|g.is_stable())
690         .map(|g|g.opt_group)
691         .collect()
692 }
693
694 #[derive(Copy, Clone, PartialEq, Eq, Show)]
695 pub enum OptionStability { Stable, Unstable }
696
697 #[derive(Clone, PartialEq, Eq)]
698 pub struct RustcOptGroup {
699     pub opt_group: getopts::OptGroup,
700     pub stability: OptionStability,
701 }
702
703 impl RustcOptGroup {
704     pub fn is_stable(&self) -> bool {
705         self.stability == OptionStability::Stable
706     }
707
708     fn stable(g: getopts::OptGroup) -> RustcOptGroup {
709         RustcOptGroup { opt_group: g, stability: OptionStability::Stable }
710     }
711
712     fn unstable(g: getopts::OptGroup) -> RustcOptGroup {
713         RustcOptGroup { opt_group: g, stability: OptionStability::Unstable }
714     }
715 }
716
717 // The `opt` local module holds wrappers around the `getopts` API that
718 // adds extra rustc-specific metadata to each option; such metadata
719 // is exposed by .  The public
720 // functions below ending with `_u` are the functions that return
721 // *unstable* options, i.e. options that are only enabled when the
722 // user also passes the `-Z unstable-options` debugging flag.
723 mod opt {
724     // The `fn opt_u` etc below are written so that we can use them
725     // in the future; do not warn about them not being used right now.
726     #![allow(dead_code)]
727
728     use getopts;
729     use super::RustcOptGroup;
730
731     type R = RustcOptGroup;
732     type S<'a> = &'a str;
733
734     fn stable(g: getopts::OptGroup) -> R { RustcOptGroup::stable(g) }
735     fn unstable(g: getopts::OptGroup) -> R { RustcOptGroup::unstable(g) }
736
737     // FIXME (pnkfelix): We default to stable since the current set of
738     // options is defacto stable.  However, it would be good to revise the
739     // code so that a stable option is the thing that takes extra effort
740     // to encode.
741
742     pub fn     opt(a: S, b: S, c: S, d: S) -> R { stable(getopts::optopt(a, b, c, d)) }
743     pub fn   multi(a: S, b: S, c: S, d: S) -> R { stable(getopts::optmulti(a, b, c, d)) }
744     pub fn    flag(a: S, b: S, c: S)       -> R { stable(getopts::optflag(a, b, c)) }
745     pub fn flagopt(a: S, b: S, c: S, d: S) -> R { stable(getopts::optflagopt(a, b, c, d)) }
746
747     pub fn     opt_u(a: S, b: S, c: S, d: S) -> R { unstable(getopts::optopt(a, b, c, d)) }
748     pub fn   multi_u(a: S, b: S, c: S, d: S) -> R { unstable(getopts::optmulti(a, b, c, d)) }
749     pub fn    flag_u(a: S, b: S, c: S)       -> R { unstable(getopts::optflag(a, b, c)) }
750     pub fn flagopt_u(a: S, b: S, c: S, d: S) -> R { unstable(getopts::optflagopt(a, b, c, d)) }
751 }
752
753 /// Returns the "short" subset of the rustc command line options,
754 /// including metadata for each option, such as whether the option is
755 /// part of the stable long-term interface for rustc.
756 pub fn rustc_short_optgroups() -> Vec<RustcOptGroup> {
757     vec![
758         opt::flag("h", "help", "Display this message"),
759         opt::multi("", "cfg", "Configure the compilation environment", "SPEC"),
760         opt::multi("L", "",   "Add a directory to the library search path", "PATH"),
761         opt::multi("l", "",   "Link the generated crate(s) to the specified native
762                              library NAME. The optional KIND can be one of,
763                              static, dylib, or framework. If omitted, dylib is
764                              assumed.", "[KIND=]NAME"),
765         opt::multi("", "crate-type", "Comma separated list of types of crates
766                                     for the compiler to emit",
767                    "[bin|lib|rlib|dylib|staticlib]"),
768         opt::opt("", "crate-name", "Specify the name of the crate being built",
769                "NAME"),
770         opt::multi("", "emit", "Comma separated list of types of output for \
771                               the compiler to emit",
772                  "[asm|llvm-bc|llvm-ir|obj|link|dep-info]"),
773         opt::multi("", "print", "Comma separated list of compiler information to \
774                                print on stdout",
775                  "[crate-name|file-names|sysroot]"),
776         opt::flag("g",  "",  "Equivalent to -C debuginfo=2"),
777         opt::flag("O", "", "Equivalent to -C opt-level=2"),
778         opt::opt("o", "", "Write output to <filename>", "FILENAME"),
779         opt::opt("",  "out-dir", "Write output to compiler-chosen filename \
780                                 in <dir>", "DIR"),
781         opt::opt("", "explain", "Provide a detailed explanation of an error \
782                                message", "OPT"),
783         opt::flag("", "test", "Build a test harness"),
784         opt::opt("", "target", "Target triple cpu-manufacturer-kernel[-os] \
785                               to compile for (see chapter 3.4 of \
786                               http://www.sourceware.org/autobook/
787                               for details)",
788                "TRIPLE"),
789         opt::multi("W", "warn", "Set lint warnings", "OPT"),
790         opt::multi("A", "allow", "Set lint allowed", "OPT"),
791         opt::multi("D", "deny", "Set lint denied", "OPT"),
792         opt::multi("F", "forbid", "Set lint forbidden", "OPT"),
793         opt::multi("C", "codegen", "Set a codegen option", "OPT[=VALUE]"),
794         opt::flag("V", "version", "Print version info and exit"),
795         opt::flag("v", "verbose", "Use verbose output"),
796     ]
797 }
798
799 /// Returns all rustc command line options, including metadata for
800 /// each option, such as whether the option is part of the stable
801 /// long-term interface for rustc.
802 pub fn rustc_optgroups() -> Vec<RustcOptGroup> {
803     let mut opts = rustc_short_optgroups();
804     opts.push_all(&[
805         opt::multi("", "extern", "Specify where an external rust library is \
806                                 located",
807                  "NAME=PATH"),
808         opt::opt("", "opt-level", "Optimize with possible levels 0-3", "LEVEL"),
809         opt::opt("", "sysroot", "Override the system root", "PATH"),
810         opt::multi("Z", "", "Set internal debugging options", "FLAG"),
811         opt::opt("", "color", "Configure coloring of output:
812             auto   = colorize, if output goes to a tty (default);
813             always = always colorize output;
814             never  = never colorize output", "auto|always|never"),
815
816         // DEPRECATED
817         opt::flag("", "print-crate-name", "Output the crate name and exit"),
818         opt::flag("", "print-file-name", "Output the file(s) that would be \
819                                         written if compilation \
820                                         continued and exit"),
821         opt::opt("",  "debuginfo",  "Emit DWARF debug info to the objects created:
822              0 = no debug info,
823              1 = line-tables only (for stacktraces and breakpoints),
824              2 = full debug info with variable and type information \
825                     (same as -g)", "LEVEL"),
826         opt::flag("", "no-trans", "Run all passes except translation; no output"),
827         opt::flag("", "no-analysis", "Parse and expand the source, but run no \
828                                     analysis and produce no output"),
829         opt::flag("", "parse-only", "Parse only; do not compile, assemble, \
830                                    or link"),
831         opt::flagopt("", "pretty",
832                    "Pretty-print the input instead of compiling;
833                    valid types are: `normal` (un-annotated source),
834                    `expanded` (crates expanded),
835                    `typed` (crates expanded, with type annotations), or
836                    `expanded,identified` (fully parenthesized, AST nodes with IDs).",
837                  "TYPE"),
838         opt::flagopt_u("", "xpretty",
839                      "Pretty-print the input instead of compiling, unstable variants;
840                       valid types are any of the types for `--pretty`, as well as:
841                       `flowgraph=<nodeid>` (graphviz formatted flowgraph for node), or
842                       `everybody_loops` (all function bodies replaced with `loop {}`).",
843                      "TYPE"),
844         opt::opt_u("", "show-span", "Show spans for compiler debugging", "expr|pat|ty"),
845         opt::flagopt("", "dep-info",
846                  "Output dependency info to <filename> after compiling, \
847                   in a format suitable for use by Makefiles", "FILENAME"),
848     ]);
849     opts
850 }
851
852 // Convert strings provided as --cfg [cfgspec] into a crate_cfg
853 pub fn parse_cfgspecs(cfgspecs: Vec<String> ) -> ast::CrateConfig {
854     cfgspecs.into_iter().map(|s| {
855         parse::parse_meta_from_source_str("cfgspec".to_string(),
856                                           s.to_string(),
857                                           Vec::new(),
858                                           &parse::new_parse_sess())
859     }).collect::<ast::CrateConfig>()
860 }
861
862 pub fn build_session_options(matches: &getopts::Matches) -> Options {
863
864     let unparsed_crate_types = matches.opt_strs("crate-type");
865     let crate_types = parse_crate_types_from_list(unparsed_crate_types)
866         .unwrap_or_else(|e| early_error(&e[]));
867
868     let mut lint_opts = vec!();
869     let mut describe_lints = false;
870
871     for &level in [lint::Allow, lint::Warn, lint::Deny, lint::Forbid].iter() {
872         for lint_name in matches.opt_strs(level.as_str()).into_iter() {
873             if lint_name == "help" {
874                 describe_lints = true;
875             } else {
876                 lint_opts.push((lint_name.replace("-", "_"), level));
877             }
878         }
879     }
880
881     let mut debugging_opts = 0;
882     let debug_flags = matches.opt_strs("Z");
883     let debug_map = debugging_opts_map();
884     for debug_flag in debug_flags.iter() {
885         let mut this_bit = 0;
886         for &(name, _, bit) in debug_map.iter() {
887             if name == *debug_flag {
888                 this_bit = bit;
889                 break;
890             }
891         }
892         if this_bit == 0 {
893             early_error(&format!("unknown debug flag: {}",
894                                 *debug_flag)[])
895         }
896         debugging_opts |= this_bit;
897     }
898
899     let parse_only = if matches.opt_present("parse-only") {
900         // FIXME(acrichto) remove this eventually
901         early_warn("--parse-only is deprecated in favor of -Z parse-only");
902         true
903     } else {
904         debugging_opts & PARSE_ONLY != 0
905     };
906     let no_trans = if matches.opt_present("no-trans") {
907         // FIXME(acrichto) remove this eventually
908         early_warn("--no-trans is deprecated in favor of -Z no-trans");
909         true
910     } else {
911         debugging_opts & NO_TRANS != 0
912     };
913     let no_analysis = if matches.opt_present("no-analysis") {
914         // FIXME(acrichto) remove this eventually
915         early_warn("--no-analysis is deprecated in favor of -Z no-analysis");
916         true
917     } else {
918         debugging_opts & NO_ANALYSIS != 0
919     };
920
921     if debugging_opts & DEBUG_LLVM != 0 {
922         unsafe { llvm::LLVMSetDebug(1); }
923     }
924
925     let mut output_types = Vec::new();
926     if !parse_only && !no_trans {
927         let unparsed_output_types = matches.opt_strs("emit");
928         for unparsed_output_type in unparsed_output_types.iter() {
929             for part in unparsed_output_type.split(',') {
930                 let output_type = match part.as_slice() {
931                     "asm" => OutputTypeAssembly,
932                     "llvm-ir" => OutputTypeLlvmAssembly,
933                     "llvm-bc" => OutputTypeBitcode,
934                     "obj" => OutputTypeObject,
935                     "link" => OutputTypeExe,
936                     "dep-info" => OutputTypeDepInfo,
937                     _ => {
938                         early_error(&format!("unknown emission type: `{}`",
939                                             part)[])
940                     }
941                 };
942                 output_types.push(output_type)
943             }
944         }
945     };
946     output_types.sort();
947     output_types.dedup();
948     if output_types.len() == 0 {
949         output_types.push(OutputTypeExe);
950     }
951
952     let cg = build_codegen_options(matches);
953
954     let sysroot_opt = matches.opt_str("sysroot").map(|m| Path::new(m));
955     let target = matches.opt_str("target").unwrap_or(
956         host_triple().to_string());
957     let opt_level = {
958         if matches.opt_present("O") {
959             if matches.opt_present("opt-level") {
960                 early_error("-O and --opt-level both provided");
961             }
962             if cg.opt_level.is_some() {
963                 early_error("-O and -C opt-level both provided");
964             }
965             Default
966         } else if matches.opt_present("opt-level") {
967             // FIXME(acrichto) remove this eventually
968             early_warn("--opt-level=N is deprecated in favor of -C opt-level=N");
969             match matches.opt_str("opt-level").as_ref().map(|s| s.as_slice()) {
970                 None      |
971                 Some("0") => No,
972                 Some("1") => Less,
973                 Some("2") => Default,
974                 Some("3") => Aggressive,
975                 Some(arg) => {
976                     early_error(&format!("optimization level needs to be \
977                                          between 0-3 (instead was `{}`)",
978                                         arg)[]);
979                 }
980             }
981         } else {
982             match cg.opt_level {
983                 None => No,
984                 Some(0) => No,
985                 Some(1) => Less,
986                 Some(2) => Default,
987                 Some(3) => Aggressive,
988                 Some(arg) => {
989                     early_error(format!("optimization level needs to be \
990                                          between 0-3 (instead was `{}`)",
991                                         arg).as_slice());
992                 }
993             }
994         }
995     };
996     let gc = debugging_opts & GC != 0;
997     let debuginfo = if matches.opt_present("g") {
998         if matches.opt_present("debuginfo") {
999             early_error("-g and --debuginfo both provided");
1000         }
1001         if cg.debuginfo.is_some() {
1002             early_error("-g and -C debuginfo both provided");
1003         }
1004         FullDebugInfo
1005     } else if matches.opt_present("debuginfo") {
1006         // FIXME(acrichto) remove this eventually
1007         early_warn("--debuginfo=N is deprecated in favor of -C debuginfo=N");
1008         match matches.opt_str("debuginfo").as_ref().map(|s| s.as_slice()) {
1009             Some("0") => NoDebugInfo,
1010             Some("1") => LimitedDebugInfo,
1011             None      |
1012             Some("2") => FullDebugInfo,
1013             Some(arg) => {
1014                 early_error(&format!("debug info level needs to be between \
1015                                      0-2 (instead was `{}`)",
1016                                     arg)[]);
1017             }
1018         }
1019     } else {
1020         match cg.debuginfo {
1021             None | Some(0) => NoDebugInfo,
1022             Some(1) => LimitedDebugInfo,
1023             Some(2) => FullDebugInfo,
1024             Some(arg) => {
1025                 early_error(format!("debug info level needs to be between \
1026                                      0-2 (instead was `{}`)",
1027                                     arg).as_slice());
1028             }
1029         }
1030     };
1031
1032     let mut search_paths = SearchPaths::new();
1033     for s in matches.opt_strs("L").iter() {
1034         search_paths.add_path(&s[]);
1035     }
1036
1037     let libs = matches.opt_strs("l").into_iter().map(|s| {
1038         let mut parts = s.splitn(1, '=');
1039         let kind = parts.next().unwrap();
1040         if let Some(name) = parts.next() {
1041             let kind = match kind {
1042                 "dylib" => cstore::NativeUnknown,
1043                 "framework" => cstore::NativeFramework,
1044                 "static" => cstore::NativeStatic,
1045                 s => {
1046                     early_error(format!("unknown library kind `{}`, expected \
1047                                          one of dylib, framework, or static",
1048                                         s).as_slice());
1049                 }
1050             };
1051             return (name.to_string(), kind)
1052         }
1053
1054         // FIXME(acrichto) remove this once crates have stopped using it, this
1055         //                 is deprecated behavior now.
1056         let mut parts = s.rsplitn(1, ':');
1057         let kind = parts.next().unwrap();
1058         let (name, kind) = match (parts.next(), kind) {
1059             (None, name) |
1060             (Some(name), "dylib") => (name, cstore::NativeUnknown),
1061             (Some(name), "framework") => (name, cstore::NativeFramework),
1062             (Some(name), "static") => (name, cstore::NativeStatic),
1063             (_, s) => {
1064                 early_error(&format!("unknown library kind `{}`, expected \
1065                                      one of dylib, framework, or static",
1066                                     s)[]);
1067             }
1068         };
1069         (name.to_string(), kind)
1070     }).collect();
1071
1072     let cfg = parse_cfgspecs(matches.opt_strs("cfg"));
1073     let test = matches.opt_present("test");
1074     let write_dependency_info = if matches.opt_present("dep-info") {
1075         // FIXME(acrichto) remove this eventually
1076         early_warn("--dep-info has been deprecated in favor of --emit");
1077         (true, matches.opt_str("dep-info").map(|p| Path::new(p)))
1078     } else {
1079         (output_types.contains(&OutputTypeDepInfo), None)
1080     };
1081
1082     let mut prints = matches.opt_strs("print").into_iter().map(|s| {
1083         match s.as_slice() {
1084             "crate-name" => PrintRequest::CrateName,
1085             "file-names" => PrintRequest::FileNames,
1086             "sysroot" => PrintRequest::Sysroot,
1087             req => {
1088                 early_error(format!("unknown print request `{}`", req).as_slice())
1089             }
1090         }
1091     }).collect::<Vec<_>>();
1092     if matches.opt_present("print-crate-name") {
1093         // FIXME(acrichto) remove this eventually
1094         early_warn("--print-crate-name has been deprecated in favor of \
1095                     --print crate-name");
1096         prints.push(PrintRequest::CrateName);
1097     }
1098     if matches.opt_present("print-file-name") {
1099         // FIXME(acrichto) remove this eventually
1100         early_warn("--print-file-name has been deprecated in favor of \
1101                     --print file-names");
1102         prints.push(PrintRequest::FileNames);
1103     }
1104
1105     if !cg.remark.is_empty() && debuginfo == NoDebugInfo {
1106         early_warn("-C remark will not show source locations without \
1107                     --debuginfo");
1108     }
1109
1110     let color = match matches.opt_str("color").as_ref().map(|s| &s[]) {
1111         Some("auto")   => Auto,
1112         Some("always") => Always,
1113         Some("never")  => Never,
1114
1115         None => Auto,
1116
1117         Some(arg) => {
1118             early_error(&format!("argument for --color must be auto, always \
1119                                  or never (instead was `{}`)",
1120                                 arg)[])
1121         }
1122     };
1123
1124     let mut externs = HashMap::new();
1125     for arg in matches.opt_strs("extern").iter() {
1126         let mut parts = arg.splitn(1, '=');
1127         let name = match parts.next() {
1128             Some(s) => s,
1129             None => early_error("--extern value must not be empty"),
1130         };
1131         let location = match parts.next() {
1132             Some(s) => s,
1133             None => early_error("--extern value must be of the format `foo=bar`"),
1134         };
1135
1136         match externs.entry(name.to_string()) {
1137             Vacant(entry) => { entry.insert(vec![location.to_string()]); },
1138             Occupied(mut entry) => { entry.get_mut().push(location.to_string()); },
1139         }
1140     }
1141
1142     let crate_name = matches.opt_str("crate-name");
1143
1144     Options {
1145         crate_types: crate_types,
1146         gc: gc,
1147         optimize: opt_level,
1148         debuginfo: debuginfo,
1149         lint_opts: lint_opts,
1150         describe_lints: describe_lints,
1151         output_types: output_types,
1152         search_paths: search_paths,
1153         maybe_sysroot: sysroot_opt,
1154         target_triple: target,
1155         cfg: cfg,
1156         test: test,
1157         parse_only: parse_only,
1158         no_trans: no_trans,
1159         no_analysis: no_analysis,
1160         debugging_opts: debugging_opts,
1161         write_dependency_info: write_dependency_info,
1162         prints: prints,
1163         cg: cg,
1164         color: color,
1165         show_span: None,
1166         externs: externs,
1167         crate_name: crate_name,
1168         alt_std_name: None,
1169         libs: libs,
1170         unstable_features: UnstableFeatures::Disallow
1171     }
1172 }
1173
1174 pub fn parse_crate_types_from_list(list_list: Vec<String>) -> Result<Vec<CrateType>, String> {
1175
1176     let mut crate_types: Vec<CrateType> = Vec::new();
1177     for unparsed_crate_type in list_list.iter() {
1178         for part in unparsed_crate_type.split(',') {
1179             let new_part = match part {
1180                 "lib"       => default_lib_output(),
1181                 "rlib"      => CrateTypeRlib,
1182                 "staticlib" => CrateTypeStaticlib,
1183                 "dylib"     => CrateTypeDylib,
1184                 "bin"       => CrateTypeExecutable,
1185                 _ => {
1186                     return Err(format!("unknown crate type: `{}`",
1187                                        part));
1188                 }
1189             };
1190             crate_types.push(new_part)
1191         }
1192     }
1193
1194     return Ok(crate_types);
1195 }
1196
1197 impl fmt::Show for CrateType {
1198     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
1199         match *self {
1200             CrateTypeExecutable => "bin".fmt(f),
1201             CrateTypeDylib => "dylib".fmt(f),
1202             CrateTypeRlib => "rlib".fmt(f),
1203             CrateTypeStaticlib => "staticlib".fmt(f)
1204         }
1205     }
1206 }
1207
1208 #[cfg(test)]
1209 mod test {
1210
1211     use session::config::{build_configuration, optgroups, build_session_options};
1212     use session::build_session;
1213
1214     use getopts::getopts;
1215     use syntax::attr;
1216     use syntax::attr::AttrMetaMethods;
1217     use syntax::diagnostics;
1218
1219     // When the user supplies --test we should implicitly supply --cfg test
1220     #[test]
1221     fn test_switch_implies_cfg_test() {
1222         let matches =
1223             &match getopts(&["--test".to_string()], &optgroups()[]) {
1224               Ok(m) => m,
1225               Err(f) => panic!("test_switch_implies_cfg_test: {}", f)
1226             };
1227         let registry = diagnostics::registry::Registry::new(&[]);
1228         let sessopts = build_session_options(matches);
1229         let sess = build_session(sessopts, None, registry);
1230         let cfg = build_configuration(&sess);
1231         assert!((attr::contains_name(&cfg[], "test")));
1232     }
1233
1234     // When the user supplies --test and --cfg test, don't implicitly add
1235     // another --cfg test
1236     #[test]
1237     fn test_switch_implies_cfg_test_unless_cfg_test() {
1238         let matches =
1239             &match getopts(&["--test".to_string(), "--cfg=test".to_string()],
1240                            &optgroups()[]) {
1241               Ok(m) => m,
1242               Err(f) => {
1243                 panic!("test_switch_implies_cfg_test_unless_cfg_test: {}", f)
1244               }
1245             };
1246         let registry = diagnostics::registry::Registry::new(&[]);
1247         let sessopts = build_session_options(matches);
1248         let sess = build_session(sessopts, None, registry);
1249         let cfg = build_configuration(&sess);
1250         let mut test_items = cfg.iter().filter(|m| m.name() == "test");
1251         assert!(test_items.next().is_some());
1252         assert!(test_items.next().is_none());
1253     }
1254
1255     #[test]
1256     fn test_can_print_warnings() {
1257         {
1258             let matches = getopts(&[
1259                 "-Awarnings".to_string()
1260             ], &optgroups()[]).unwrap();
1261             let registry = diagnostics::registry::Registry::new(&[]);
1262             let sessopts = build_session_options(&matches);
1263             let sess = build_session(sessopts, None, registry);
1264             assert!(!sess.can_print_warnings);
1265         }
1266
1267         {
1268             let matches = getopts(&[
1269                 "-Awarnings".to_string(),
1270                 "-Dwarnings".to_string()
1271             ], &optgroups()[]).unwrap();
1272             let registry = diagnostics::registry::Registry::new(&[]);
1273             let sessopts = build_session_options(&matches);
1274             let sess = build_session(sessopts, None, registry);
1275             assert!(sess.can_print_warnings);
1276         }
1277
1278         {
1279             let matches = getopts(&[
1280                 "-Adead_code".to_string()
1281             ], &optgroups()[]).unwrap();
1282             let registry = diagnostics::registry::Registry::new(&[]);
1283             let sessopts = build_session_options(&matches);
1284             let sess = build_session(sessopts, None, registry);
1285             assert!(sess.can_print_warnings);
1286         }
1287     }
1288 }