2004-07-01 16:51:26 +02:00
|
|
|
=pod
|
|
|
|
|
|
|
|
=head1 NAME
|
|
|
|
|
2004-12-22 07:47:25 +01:00
|
|
|
llvm-gcc - LLVM C front-end
|
2004-07-01 16:51:26 +02:00
|
|
|
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
|
2004-12-22 07:47:25 +01:00
|
|
|
B<llvm-gcc> [I<options>] I<filename>
|
2004-07-01 16:51:26 +02:00
|
|
|
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
|
2004-12-22 07:47:25 +01:00
|
|
|
The B<llvm-gcc> command is the LLVM C front end. It is a modified
|
2007-02-12 06:02:56 +01:00
|
|
|
version of gcc that compiles C/ObjC programs into native objects, LLVM
|
2007-07-09 13:24:05 +02:00
|
|
|
bitcode or LLVM assembly language, depending upon the options.
|
2004-07-01 16:51:26 +02:00
|
|
|
|
2007-02-12 06:02:56 +01:00
|
|
|
By default, B<llvm-gcc> compiles to native objects just like GCC does. If the
|
2008-06-12 19:04:09 +02:00
|
|
|
B<-emit-llvm> and B<-c> options are given then it will generate LLVM bitcode files
|
|
|
|
instead. If B<-emit-llvm> and B<-S> are given, then it will generate LLVM
|
|
|
|
assembly.
|
2004-07-01 16:51:26 +02:00
|
|
|
|
2004-12-22 07:47:25 +01:00
|
|
|
Being derived from the GNU Compiler Collection, B<llvm-gcc> has many
|
2004-07-01 16:51:26 +02:00
|
|
|
of gcc's features and accepts most of gcc's options. It handles a
|
2008-06-12 19:04:09 +02:00
|
|
|
number of gcc's extensions to the C programming language. See the gcc
|
|
|
|
documentation for details.
|
2004-07-01 16:51:26 +02:00
|
|
|
|
|
|
|
=head1 OPTIONS
|
|
|
|
|
|
|
|
=over
|
|
|
|
|
|
|
|
=item B<--help>
|
|
|
|
|
|
|
|
Print a summary of command line options.
|
|
|
|
|
|
|
|
=item B<-o> I<filename>
|
|
|
|
|
|
|
|
Specify the output file to be I<filename>.
|
|
|
|
|
|
|
|
=item B<-I> I<directory>
|
|
|
|
|
|
|
|
Add a directory to the header file search path. This option can be
|
|
|
|
repeated.
|
|
|
|
|
|
|
|
=item B<-L> I<directory>
|
|
|
|
|
|
|
|
Add I<directory> to the library search path. This option can be
|
|
|
|
repeated.
|
|
|
|
|
|
|
|
=item B<-l>I<name>
|
|
|
|
|
|
|
|
Link in the library libI<name>.[bc | a | so]. This library should
|
2007-07-09 13:24:05 +02:00
|
|
|
be a bitcode library.
|
2004-07-01 16:51:26 +02:00
|
|
|
|
2007-02-12 06:02:56 +01:00
|
|
|
=item B<-emit-llvm>
|
2005-05-13 22:09:33 +02:00
|
|
|
|
2008-06-12 19:04:09 +02:00
|
|
|
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.
|
2004-07-01 16:51:26 +02:00
|
|
|
|
|
|
|
=back
|
|
|
|
|
|
|
|
=head1 EXIT STATUS
|
|
|
|
|
2004-12-22 07:47:25 +01:00
|
|
|
If B<llvm-gcc> succeeds, it will exit with 0. Otherwise, if an error
|
2004-07-01 16:51:26 +02:00
|
|
|
occurs, it will exit with a non-zero value.
|
|
|
|
|
|
|
|
=head1 SEE ALSO
|
|
|
|
|
2007-02-09 17:56:25 +01:00
|
|
|
L<llvm-g++|llvmgxx>
|
2004-07-01 16:51:26 +02:00
|
|
|
|
|
|
|
=head1 AUTHORS
|
|
|
|
|
2006-03-14 06:42:07 +01:00
|
|
|
Maintained by the LLVM Team (L<http://llvm.org>).
|
2004-07-01 16:51:26 +02:00
|
|
|
|
|
|
|
=cut
|
|
|
|
|