diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2017-09-22 21:34:27 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2017-09-28 07:45:50 -0700 |
| commit | 7694ca419b3ade48e22982b69dec90eb45d8da73 (patch) | |
| tree | 6d6042991fef7c098f7b2ee773d5aacb66de2851 /src/librustc/session | |
| parent | 041d3550f6d963144722094edfccb3e4e3b74114 (diff) | |
| download | rust-7694ca419b3ade48e22982b69dec90eb45d8da73.tar.gz rust-7694ca419b3ade48e22982b69dec90eb45d8da73.zip | |
Update to the `cc` crate
This is the name the `gcc` crate has moved to
Diffstat (limited to 'src/librustc/session')
| -rw-r--r-- | src/librustc/session/config.rs | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/src/librustc/session/config.rs b/src/librustc/session/config.rs index d3256357941..b1bf893cfd8 100644 --- a/src/librustc/session/config.rs +++ b/src/librustc/session/config.rs @@ -1373,20 +1373,20 @@ pub fn rustc_optgroups() -> Vec<RustcOptGroup> { always = always colorize output; never = never colorize output", "auto|always|never"), - opt::flagopt("", "pretty", - "Pretty-print the input instead of compiling; - valid types are: `normal` (un-annotated source), - `expanded` (crates expanded), or - `expanded,identified` (fully parenthesized, AST nodes with IDs).", - "TYPE"), - opt::flagopt("", "unpretty", - "Present the input source, unstable (and less-pretty) variants; - valid types are any of the types for `--pretty`, as well as: - `flowgraph=<nodeid>` (graphviz formatted flowgraph for node), - `everybody_loops` (all function bodies replaced with `loop {}`), - `hir` (the HIR), `hir,identified`, or - `hir,typed` (HIR with types for each node).", - "TYPE"), + opt::opt("", "pretty", + "Pretty-print the input instead of compiling; + valid types are: `normal` (un-annotated source), + `expanded` (crates expanded), or + `expanded,identified` (fully parenthesized, AST nodes with IDs).", + "TYPE"), + opt::opt("", "unpretty", + "Present the input source, unstable (and less-pretty) variants; + valid types are any of the types for `--pretty`, as well as: + `flowgraph=<nodeid>` (graphviz formatted flowgraph for node), + `everybody_loops` (all function bodies replaced with `loop {}`), + `hir` (the HIR), `hir,identified`, or + `hir,typed` (HIR with types for each node).", + "TYPE"), ]); opts } |
