summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMikhail Glushenkov <foldr@codedgers.com>2009-12-01 05:59:55 +0000
committerMikhail Glushenkov <foldr@codedgers.com>2009-12-01 05:59:55 +0000
commit18518603f1acc26768eba40c53bcfc0e2fa85fec (patch)
treec929e34d3760cbd0809c81f3c7a91c8485670af8 /docs
parenta9256d07804ea35b27ef74899de5933993e3781f (diff)
downloadllvm-18518603f1acc26768eba40c53bcfc0e2fa85fec.tar.gz
llvm-18518603f1acc26768eba40c53bcfc0e2fa85fec.tar.bz2
llvm-18518603f1acc26768eba40c53bcfc0e2fa85fec.tar.xz
Support -[weak_]framework and -F in llvmc.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@90210 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r--docs/CommandGuide/llvmc.pod25
1 files changed, 18 insertions, 7 deletions
diff --git a/docs/CommandGuide/llvmc.pod b/docs/CommandGuide/llvmc.pod
index e3031e123d..e5e0651161 100644
--- a/docs/CommandGuide/llvmc.pod
+++ b/docs/CommandGuide/llvmc.pod
@@ -126,24 +126,31 @@ use the B<-Wo,> option.
=item B<-I> I<directory>
-Add a directory to the header file search path. This option can be
-repeated.
+Add a directory to the header file search path.
=item B<-L> I<directory>
-Add I<directory> to the library search path. This option can be
-repeated.
+Add I<directory> to the library search path.
+
+=item B<-F> I<directory>
+
+Add I<directory> to the framework search path.
=item B<-l>I<name>
Link in the library libI<name>.[bc | a | so]. This library should
be a bitcode library.
+=item B<-framework> I<name>
+
+Link in the library libI<name>.[bc | a | so]. This library should
+be a bitcode library.
+
=item B<-emit-llvm>
-Make the output be LLVM bitcode (with B<-c>) or assembly (with B<-S>) instead
-of native object (or assembly). If B<-emit-llvm> is given without either B<-c>
-or B<-S> it has no effect.
+Output LLVM bitcode (with B<-c>) or assembly (with B<-S>) instead of native
+object (or assembly). If B<-emit-llvm> is given without either B<-c> or B<-S>
+it has no effect.
=item B<-Wa>
@@ -157,6 +164,10 @@ Pass options to linker.
Pass options to opt.
+=item B<-Wllc>
+
+Pass options to llc (code generator).
+
=back
=head1 EXIT STATUS