convert some uses of printBasicBlockLabel to use GetMBBSymbol
[llvm/avr.git] / docs / CommandGuide / llvmgxx.pod
blob64b670ebe069656d127226f44f50ccc2c7aced13
1 =pod
3 =head1 NAME
5 llvm-g++ - LLVM C++ front-end
7 =head1 SYNOPSIS
9 B<llvm-g++> [I<options>] I<filename>
11 =head1 DESCRIPTION
13 The B<llvm-g++> command is the LLVM C++ front end.  It is a modified
14 version of g++ that compiles C++/ObjC++ programs into native code, 
15 LLVM bitcode or assembly language, depending upon the options.
17 By default, B<llvm-g++> compiles to native objects just like GCC does. If the
18 B<-emit-llvm> option is given then it will generate LLVM bitcode files instead.
19 If B<-S> (assembly) is also given, then it will generate LLVM assembly. 
21 Being derived from the GNU Compiler Collection, B<llvm-g++> has many
22 of g++'s features and accepts most of g++'s options.  It handles a
23 number of g++'s extensions to the C++ programming language.
25 =head1 OPTIONS
27 =over
29 =item B<--help>
31 Print a summary of command line options.
33 =item B<-S>
35 Do not generate an LLVM bitcode file.  Rather, compile the source
36 file into an LLVM assembly language file.
38 =item B<-c>
40 Do not generate a linked executable.  Rather, compile the source
41 file into an LLVM bitcode file.  This bitcode file can then be
42 linked with other bitcode files later on to generate a full LLVM
43 executable.
45 =item B<-o> I<filename>
47 Specify the output file to be I<filename>.
49 =item B<-I> I<directory>
51 Add a directory to the header file search path.  This option can be
52 repeated.
54 =item B<-L> I<directory>
56 Add I<directory> to the library search path.  This option can be
57 repeated.
59 =item B<-l>I<name>
61 Link in the library libI<name>.[bc | a | so].  This library should
62 be a bitcode library.
64 =item B<-emit-llvm>
66 Make the output be LLVM bitcode (or assembly) instead of native object (or
67 assembly).
69 =back
71 =head1 EXIT STATUS
73 If B<llvm-g++> succeeds, it will exit with 0.  Otherwise, if an error
74 occurs, it will exit with a non-zero value.
76 =head1 SEE ALSO
78 L<llvm-gcc|llvmgcc>
80 =head1 AUTHORS
82 Maintained by the LLVM Team (L<http://llvm.org>).
84 =cut