--verbose is useful when not compiling and when compiling (#901)

This commit is contained in:
Santiago Pastorino 2020-09-29 15:18:00 +00:00 committed by GitHub
parent 6b5c62c6f8
commit 5ee9d96c07
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -21,8 +21,8 @@ adding a new command-line argument.
if it is too ambiguous what multiple flags would mean. if it is too ambiguous what multiple flags would mean.
- Always give options a long descriptive name, if only for more understandable - Always give options a long descriptive name, if only for more understandable
compiler scripts. compiler scripts.
- The `--verbose` flag is for adding verbose information to `rustc` output - The `--verbose` flag is for adding verbose information to `rustc`
when not compiling a program. For example, using it with the `--version` output. For example, using it with the `--version`
flag gives information about the hashes of the compiler code. flag gives information about the hashes of the compiler code.
- Experimental flags and options must be guarded behind the `-Z - Experimental flags and options must be guarded behind the `-Z
unstable-options` flag. unstable-options` flag.