diff options
| author | Chris Lattner <sabre@nondot.org> | 2009-05-12 00:47:40 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2009-05-12 00:47:40 +0000 |
| commit | 32efff659c0f2f756241c935d25233b1b7c3ad04 (patch) | |
| tree | d0374da9bf7fedfe190c97ee0a329b2283b703f4 /clang | |
| parent | df5a6b60701f8cec1d02fc487cd897d166eee3ba (diff) | |
| download | bcm5719-llvm-32efff659c0f2f756241c935d25233b1b7c3ad04.tar.gz bcm5719-llvm-32efff659c0f2f756241c935d25233b1b7c3ad04.zip | |
wrap up a version of the man page that is minimally helpful, but somewhat complete.
llvm-svn: 71524
Diffstat (limited to 'clang')
| -rw-r--r-- | clang/docs/tools/clang.pod | 76 |
1 files changed, 31 insertions, 45 deletions
diff --git a/clang/docs/tools/clang.pod b/clang/docs/tools/clang.pod index 2ec7d77c0eb..4adf57faf2b 100644 --- a/clang/docs/tools/clang.pod +++ b/clang/docs/tools/clang.pod @@ -401,84 +401,70 @@ and warnings). Please see the Clang User's Manual for more information. =over -=item B<-xyz> +=item B<-D>I<macroname=value> -Frob +Adds an implicit #define into the predefines buffer which is read before the +source file is preprocessed. --D --U --include --imacros +=item B<-U>I<macroname> +Adds an implicit #undef into the predefines buffer which is read before the +source file is preprocessed. +=item B<-include> I<filename> --nostdinc --F --I --idirafter --iquote --isystem --iprefix --iwithprefix --iwithprefixbefore --isysroot +Adds an implicit #include into the predefines buffer which is read before the +source file is preprocessed. +=item B<-I>I<directory> +Add the specified directory to the search path for include files. +=item B<-F>I<directory> -=back +Add the specified directory to the search path for framework include files. +=item B<-nostdinc> +Do not search the standard system directories for include files. +=cut -=head2 Parser and Semantic Analysis Options +## TODO, but do we really want people using this stuff? +=item B<-idirafter>I<directory> +=item B<-iquote>I<directory> +=item B<-isystem>I<directory> +=item B<-iprefix>I<directory> +=item B<-iwithprefix>I<directory> +=item B<-iwithprefixbefore>I<directory> +=item B<-isysroot> +=pod -=over =back +=cut - +### TODO someday. +=head2 Warning Control Options +=over +=back =head2 Code Generation and Optimization Options - =over - =back - - - - - - =head2 Assembler Options - =over - =back - - - - - - =head2 Linker Options - =over - =back - - - - - =head2 Static Analyzer Options - =over - =back +=pod =head1 ENVIRONMENT |

