diff options
| author | Brian Anderson <banderson@mozilla.com> | 2014-04-15 20:33:14 -0700 |
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2014-04-16 11:30:36 -0700 |
| commit | 111178d028f7bfdd74854da8b03b2b427563c24f (patch) | |
| tree | a9d6b2061a8837c84374e059bbfac8be4ad90bc3 | |
| parent | 45e4fad5d0693b9a4ffdcdb572c8f45157eb4baa (diff) | |
rustc: Slightly reword the --no-analysis description for clarity
| -rw-r--r-- | src/librustc/driver/driver.rs | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/librustc/driver/driver.rs b/src/librustc/driver/driver.rs index 4fc7239e63b..2d307d2c0a9 100644 --- a/src/librustc/driver/driver.rs +++ b/src/librustc/driver/driver.rs @@ -1103,7 +1103,8 @@ pub fn optgroups() -> Vec<getopts::OptGroup> { 1 = line-tables only (for stacktraces and breakpoints), 2 = full debug info with variable and type information (same as -g)", "LEVEL"), optflag("", "no-trans", "Run all passes except translation; no output"), - optflag("", "no-analysis", "Parse and expand the output, but run no analysis or produce output"), + optflag("", "no-analysis", + "Parse and expand the source, but run no analysis and produce no output"), optflag("O", "", "Equivalent to --opt-level=2"), optopt("o", "", "Write output to <filename>", "FILENAME"), optopt("", "opt-level", "Optimize with possible levels 0-3", "LEVEL"), @@ -1116,7 +1117,9 @@ pub fn optgroups() -> Vec<getopts::OptGroup> { typed (crates expanded, with type annotations), or identified (fully parenthesized, AST nodes and blocks with IDs)", "TYPE"), - optflagopt("", "dep-info", "Output dependency info to <filename> after compiling", "FILENAME"), + optflagopt("", "dep-info", + "Output dependency info to <filename> after compiling, \ + in a format suitable for use by Makefiles", "FILENAME"), optopt("", "sysroot", "Override the system root", "PATH"), optflag("", "test", "Build a test harness"), optopt("", "target", "Target triple cpu-manufacturer-kernel[-os] |
