diff options
author | Dan Gohman <gohman@apple.com> | 2009-08-25 15:54:01 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-08-25 15:54:01 +0000 |
commit | 0cabaa54e512420f3057ffe781ff317ecb9196ed (patch) | |
tree | 1295f1b7ee5d5a77c367bfd54b52c05c29c46183 /docs/CommandLine.html | |
parent | 47dd94e542f78b518b4fa70c0c00b1be7e3cf5a6 (diff) |
Update documentation for the -f change.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79996 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/CommandLine.html')
-rw-r--r-- | docs/CommandLine.html | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/docs/CommandLine.html b/docs/CommandLine.html index 09ed2b8c0e..f14defc31f 100644 --- a/docs/CommandLine.html +++ b/docs/CommandLine.html @@ -331,13 +331,13 @@ OPTIONS: <div class="doc_text"> <p>In addition to input and output filenames, we would like the compiler example -to support three boolean flags: "<tt>-f</tt>" to force overwriting of the output -file, "<tt>--quiet</tt>" to enable quiet mode, and "<tt>-q</tt>" for backwards -compatibility with some of our users. We can support these by declaring options -of boolean type like this:</p> +to support three boolean flags: "<tt>-f</tt>" to force writing binary output to +a terminal, "<tt>--quiet</tt>" to enable quiet mode, and "<tt>-q</tt>" for +backwards compatibility with some of our users. We can support these by +declaring options of boolean type like this:</p> <div class="doc_code"><pre> -<a href="#cl::opt">cl::opt</a><bool> Force ("<i>f</i>", <a href="#cl::desc">cl::desc</a>("<i>Overwrite output files</i>")); +<a href="#cl::opt">cl::opt</a><bool> Force ("<i>f</i>", <a href="#cl::desc">cl::desc</a>("<i>Enable binary output on terminals</i>")); <a href="#cl::opt">cl::opt</a><bool> Quiet ("<i>quiet</i>", <a href="#cl::desc">cl::desc</a>("<i>Don't print informational messages</i>")); <a href="#cl::opt">cl::opt</a><bool> Quiet2("<i>q</i>", <a href="#cl::desc">cl::desc</a>("<i>Don't print informational messages</i>"), <a href="#cl::Hidden">cl::Hidden</a>); </pre></div> @@ -378,7 +378,7 @@ library calls to parse the string value into the specified data type.</p> USAGE: compiler [options] <input file> OPTIONS: - <b>-f - Overwrite output files</b> + <b>-f - Enable binary output on terminals</b> -o - Override output filename <b>-quiet - Don't print informational messages</b> -help - display available options (--help-hidden for more) @@ -390,7 +390,7 @@ OPTIONS: USAGE: compiler [options] <input file> OPTIONS: - -f - Overwrite output files + -f - Enable binary output on terminals -o - Override output filename <b>-q - Don't print informational messages</b> -quiet - Don't print informational messages @@ -530,7 +530,7 @@ OPTIONS: -O1 - Enable trivial optimizations -O2 - Enable default optimizations -O3 - Enable expensive optimizations</b> - -f - Overwrite output files + -f - Enable binary output on terminals -help - display available options (--help-hidden for more) -o <filename> - Specify output filename -quiet - Don't print informational messages @@ -614,7 +614,7 @@ OPTIONS: =none - disable debug information =quick - enable quick debug information =detailed - enable detailed debug information</b> - -f - Overwrite output files + -f - Enable binary output on terminals -help - display available options (--help-hidden for more) -o <filename> - Specify output filename -quiet - Don't print informational messages |