[llvm-branch-commits] [cfe-branch] r71528 - in /cfe/branches/Apple/Dib/docs/tools: Makefile clang.pod
Mike Stump
mrs at apple.com
Mon May 11 18:05:47 PDT 2009
Author: mrs
Date: Mon May 11 20:05:47 2009
New Revision: 71528
URL: http://llvm.org/viewvc/llvm-project?rev=71528&view=rev
Log:
Merge in 71487:
pull a bunch of options out of clang-cc.cpp. This doesn't include
options that the driver swizzles.
Modified:
cfe/branches/Apple/Dib/docs/tools/Makefile
cfe/branches/Apple/Dib/docs/tools/clang.pod
Modified: cfe/branches/Apple/Dib/docs/tools/Makefile
URL: http://llvm.org/viewvc/llvm-project/cfe/branches/Apple/Dib/docs/tools/Makefile?rev=71528&r1=71527&r2=71528&view=diff
==============================================================================
--- cfe/branches/Apple/Dib/docs/tools/Makefile (original)
+++ cfe/branches/Apple/Dib/docs/tools/Makefile Mon May 11 20:05:47 2009
@@ -63,7 +63,7 @@
$(DST_HTML_DIR)%.html: %.pod $(DST_HTML_DIR)/.dir
pod2html --css=manpage.css --htmlroot=. \
- --podpath=. --noindex --infile=$< --outfile=$@ --title=$*
+ --podpath=. --infile=$< --outfile=$@ --title=$*
$(DST_MAN_DIR)%.1: %.pod $(DST_MAN_DIR)/.dir
pod2man $< $@
Modified: cfe/branches/Apple/Dib/docs/tools/clang.pod
URL: http://llvm.org/viewvc/llvm-project/cfe/branches/Apple/Dib/docs/tools/clang.pod?rev=71528&r1=71527&r2=71528&view=diff
==============================================================================
--- cfe/branches/Apple/Dib/docs/tools/clang.pod (original)
+++ cfe/branches/Apple/Dib/docs/tools/clang.pod Mon May 11 20:05:47 2009
@@ -49,16 +49,17 @@
=item B<Code Generation and Optimization>
-This stage translates an AST into low-level intermediate code or machine code
-(depending on the optimization level). This phase is responsible for optimizing
-the generated code and handling target-specfic code generation. The output of
-this stage is typically called a ".s" file.
+This stage translates an AST into low-level intermediate code (known as "LLVM
+IR") and ultimately to machine code (depending on the optimization level). This
+phase is responsible for optimizing the generated code and handling
+target-specfic code generation. The output of this stage is typically called a
+".s" file or "assembly" file.
=item B<Assembler>
This stage runs the target assembler to translate the output of the compiler
into a target object file. The output of this stage is typically called a ".o"
-file.
+file or "object" file.
=item B<Linker>
@@ -69,7 +70,7 @@
=back
The Clang compiler supports a large number of options to control each of these
-stages. In addition to compilation of code, Clang also supports other tools.
+stages. In addition to compilation of code, Clang also supports other tools:
B<Clang Static Analyzer>
@@ -131,14 +132,6 @@
Display available options.
-=item B<-ObjC++>
-
-Treat source input files as Objective-C++ inputs.
-
-=item B<-ObjC>
-
-Treat source input files as Objective-C inputs.
-
=item B<-Qunused-arguments>
Don't emit warning for unused driver arguments.
@@ -203,25 +196,134 @@
Time individual commands.
+=item B<-ftime-report>
+
+Print timing summary of each stage of compilation.
+
=item B<-v>
Show commands to run and use verbose output.
+=back
+
+
+
+=head2 Target Selection Options
+
+=over
+
+-triple
+-arch
+-mmacosx-version-min=10.3.9
+-miphoneos-version-min
+
+
+=back
+
+
+
+=head2 Language Selection and Mode Options
+
+=over
+
=item B<-x> I<language>
Treat subsequent input files as having type I<language>.
+=item B<-ObjC++>
+
+Treat source input files as Objective-C++ inputs.
+
+=item B<-ObjC>
+
+Treat source input files as Objective-C inputs.
+
+B<-std>=I<language>
+
+
+-ffreestanding
+-fno-builtin
+-fmath-errno
+-fobjc-gc-only
+-fobjc-gc
+-fpascal-strings
+-fms-extensions
+-fwritable-strings
+-fno-lax-vector-conversions
+-fblocks
+-trigraphs
+
=back
+=head2 Code Generation Options
+
+=over
+
+-fexceptions
+-fobjc-nonfragile-abi
+-fgnu-runtime
+-fnext-runtime
+-ftrapv
+-fvisibility
+-Os, O0, O1, O2, O3, O4
+-fno-common
+-g
+-mcpu
+
+=back
+
+
+
+
+=head2 Diagnostics Options
+
+=over
+
+-fshow-column
+-fshow-source-location
+-fcaret-diagnostics
+-fdiagnostics-fixit-info
+-fdiagnostics-print-source-range-info
+-fprint-source-range-info
+-fdiagnostics-show-option
+-fmessage-length
+
+
+=back
=head2 Preprocessor Options
=over
+=item B<-xyz>
+
+Frob
+
+-D
+-U
+-include
+-imacros
+
+
+
+-nostdinc
+-F
+-I
+-idirafter
+-iquote
+-isystem
+-iprefix
+-iwithprefix
+-iwithprefixbefore
+-isysroot
+
+
+
+
=back
@@ -235,6 +337,8 @@
+
+
=head2 Code Generation and Optimization Options
=over
@@ -242,6 +346,10 @@
=back
+
+
+
+
=head2 Assembler Options
=over
@@ -249,6 +357,10 @@
=back
+
+
+
+
=head2 Linker Options
=over
@@ -256,6 +368,17 @@
=back
+
+
+
+=head2 Static Analyzer Options
+
+=over
+
+=back
+
+
+
=head1 ENVIRONMENT
=over
@@ -280,10 +403,11 @@
These environment variables specify additional paths, as for CPATH,
which are only used when processing the appropriate language.
-=item B<MACOSX_DEPLOYMENT_TARGET> (Apple only)
+=item B<MACOSX_DEPLOYMENT_TARGET>
If -mmacosx-version-min is unspecified, the default deployment target
-is read from this environment variable.
+is read from this environment variable. This option only affects darwin
+targets.
=back
@@ -296,7 +420,7 @@
=head1 SEE ALSO
-as(1), ld(1)
+ as(1), ld(1)
=head1 AUTHOR
More information about the llvm-branch-commits
mailing list