[llvm-commits] CVS: llvm/docs/CommandGuide/llvmc.pod
Reid Spencer
reid at x10sys.com
Thu Apr 21 19:12:52 PDT 2005
Changes in directory llvm/docs/CommandGuide:
llvmc.pod updated: 1.7 -> 1.8
---
Log message:
Correct the documentation to match the program.
---
Diffs of the changes: (+26 -13)
llvmc.pod | 39 ++++++++++++++++++++++++++-------------
1 files changed, 26 insertions(+), 13 deletions(-)
Index: llvm/docs/CommandGuide/llvmc.pod
diff -u llvm/docs/CommandGuide/llvmc.pod:1.7 llvm/docs/CommandGuide/llvmc.pod:1.8
--- llvm/docs/CommandGuide/llvmc.pod:1.7 Fri Feb 18 12:00:53 2005
+++ llvm/docs/CommandGuide/llvmc.pod Thu Apr 21 21:12:41 2005
@@ -109,13 +109,13 @@
specified on the command line will be compiled and linked with objects and
libraries also specified.
-=item B<-S> or B<--assemble>
+=item B<-S>
This option specifies that compilation should end in the creation of
an LLVM assembly file that can be later converted to an LLVM object
file.
-=item B<-E> or B<--preprocess>
+=item B<-E>
This option specifies that no compilation or linking should be
performed. Only pre-processing, if applicable to the language being
@@ -274,7 +274,7 @@
=over
-=item B<-T,pp>=I<options>
+=item B<-T,pre>=I<options>
Pass an arbitrary option to the pre-processor.
@@ -282,7 +282,7 @@
Pass an arbitrary option to the optimizer.
-=item B<-T,link>=I<options>
+=item B<-T,lnk>=I<options>
Pass an arbitrary option to the linker.
@@ -301,6 +301,11 @@
This option is just passed through to a C or C++ front end compiler to tell it
where include files can be found.
+=item B<-D>F<symbol>
+
+This option is just passed through to a C or C++ front end compiler to tell it
+to define a symbol.
+
=back
=head2 Miscellaneous Options
@@ -324,6 +329,23 @@
=over
+=item B<--config-dir> F<dirname>
+
+This option tells B<llvmc> to read configuration data from the I<directory>
+named F<dirname>. Data from such directories will be read in the order
+specified on the command line after all other standard configuration files have
+been read. This allows users or groups of users to conveniently create
+their own configuration directories in addition to the standard ones to which
+they may not have write access.
+
+
+=head2 Unimplemented Options
+
+The options below are not currently implemented in B<llvmc> but will be
+eventually. They are documented here as "future design".
+
+=over
+
=item B<--show-config> I<[suffixes...]>
When this option is given, the only action taken by B<llvmc> is to show its
@@ -344,15 +366,6 @@
a configuration item on the command line without resorting to changing the
configuration files.
-=item B<--config-dir> F<dirname>
-
-This option tells B<llvmc> to read configuration data from the I<directory>
-named F<dirname>. Data from such directories will be read in the order
-specified on the command line after all other standard configuration files have
-been read. This allows users or groups of users to conveniently create
-their own configuration directories in addition to the standard ones to which
-they may not have write access.
-
=item B<--config-only-from> F<dirname>
This option tells B<llvmc> to skip the normal processing of configuration
More information about the llvm-commits
mailing list