2004-07-01 14:51:26 +00:00
|
|
|
=pod
|
|
|
|
|
|
|
|
=head1 NAME
|
|
|
|
|
2004-12-22 06:47:25 +00:00
|
|
|
llvm-gcc - LLVM C front-end
|
2004-07-01 14:51:26 +00:00
|
|
|
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
|
2004-12-22 06:47:25 +00:00
|
|
|
B<llvm-gcc> [I<options>] I<filename>
|
2004-07-01 14:51:26 +00:00
|
|
|
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
|
2004-12-22 06:47:25 +00:00
|
|
|
The B<llvm-gcc> command is the LLVM C front end. It is a modified
|
2007-02-12 05:02:56 +00:00
|
|
|
version of gcc that compiles C/ObjC programs into native objects, LLVM
|
2007-07-09 11:24:05 +00:00
|
|
|
bitcode or LLVM assembly language, depending upon the options.
|
2004-07-01 14:51:26 +00:00
|
|
|
|
2007-02-12 05:02:56 +00:00
|
|
|
By default, B<llvm-gcc> compiles to native objects just like GCC does. If the
|
2007-07-09 11:24:05 +00:00
|
|
|
B<-emit-llvm> option is given then it will generate LLVM bitcode files instead.
|
2007-02-12 05:02:56 +00:00
|
|
|
If B<-S> (assembly) is also given, then it will generate LLVM assembly.
|
2004-07-01 14:51:26 +00:00
|
|
|
|
2004-12-22 06:47:25 +00:00
|
|
|
Being derived from the GNU Compiler Collection, B<llvm-gcc> has many
|
2004-07-01 14:51:26 +00:00
|
|
|
of gcc's features and accepts most of gcc's options. It handles a
|
|
|
|
number of gcc's extensions to the C programming language.
|
|
|
|
|
|
|
|
=head1 OPTIONS
|
|
|
|
|
|
|
|
=over
|
|
|
|
|
|
|
|
=item B<--help>
|
|
|
|
|
|
|
|
Print a summary of command line options.
|
|
|
|
|
|
|
|
=item B<-S>
|
|
|
|
|
2007-07-09 11:24:05 +00:00
|
|
|
Do not generate an LLVM bitcode file. Rather, compile the source
|
2004-07-01 14:51:26 +00:00
|
|
|
file into an LLVM assembly language file.
|
|
|
|
|
|
|
|
=item B<-c>
|
|
|
|
|
|
|
|
Do not generate a linked executable. Rather, compile the source
|
2007-07-09 11:24:05 +00:00
|
|
|
file into an LLVM bitcode file. This bitcode file can then be
|
|
|
|
linked with other bitcode files later on to generate a full LLVM
|
2004-07-01 14:51:26 +00:00
|
|
|
executable.
|
|
|
|
|
|
|
|
=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 11:24:05 +00:00
|
|
|
be a bitcode library.
|
2004-07-01 14:51:26 +00:00
|
|
|
|
2007-02-12 05:02:56 +00:00
|
|
|
=item B<-emit-llvm>
|
2005-05-13 20:09:33 +00:00
|
|
|
|
2007-07-09 11:24:05 +00:00
|
|
|
Make the output be LLVM bitcode (or assembly) instead of native object (or
|
2007-02-12 05:02:56 +00:00
|
|
|
assembly).
|
2004-07-01 14:51:26 +00:00
|
|
|
|
|
|
|
=back
|
|
|
|
|
|
|
|
=head1 EXIT STATUS
|
|
|
|
|
2004-12-22 06:47:25 +00:00
|
|
|
If B<llvm-gcc> succeeds, it will exit with 0. Otherwise, if an error
|
2004-07-01 14:51:26 +00:00
|
|
|
occurs, it will exit with a non-zero value.
|
|
|
|
|
|
|
|
=head1 SEE ALSO
|
|
|
|
|
2007-02-09 16:56:25 +00:00
|
|
|
L<llvm-g++|llvmgxx>
|
2004-07-01 14:51:26 +00:00
|
|
|
|
|
|
|
=head1 AUTHORS
|
|
|
|
|
2006-03-14 05:42:07 +00:00
|
|
|
Maintained by the LLVM Team (L<http://llvm.org>).
|
2004-07-01 14:51:26 +00:00
|
|
|
|
|
|
|
=cut
|
|
|
|
|