Fix typo
[llvm/msp430.git] / docs / CommandGuide / llvmc.pod
blob18ffb9f03a57190d03738e0842cc1db15b06445c
1 =pod
3 =head1 NAME
5 llvmc - The LLVM Compiler Driver (WIP)
7 =head1 SYNOPSIS
9 B<llvmc> [I<options>] I<filenames...>
11 =head1 DESCRIPTION
13 B<llvmc> is a configurable driver for invoking other LLVM (and non-LLVM) tools
14 in order to compile, optimize and link software for multiple languages. For
15 those familiar with FSF's B<gcc> tool, it is very similar.  Please note that
16 B<llvmc> is considered an experimental tool.
18 =head1 OPTIONS
20 =head2 Built-in Options
22 LLVMC has some built-in options that can't be overridden in the
23 configuration libraries.
25 =over
27 =item B<-o> I<filename>
29 Output file name.
31 =item B<-x> I<language>
33 Specify the language of the following input files until the next B<-x>
34 option.
36 =item B<-load> I<plugin_name>
38 Load the specified plugin DLL. Example:
39 S<-load $LLVM_DIR/Release/lib/LLVMCSimple.so>.
41 =item B<-v> or B<--verbose>
43 Enable verbose mode, i.e. print out all executed commands.
45 =item B<--check-graph>
47 Check the compilation for common errors like mismatched output/input language
48 names, multiple default edges and cycles. Because of plugins, these checks can't
49 be performed at compile-time. Exit with code zero if no errors were found, and
50 return the number of found errors otherwise. Hidden option, useful for debugging
51 LLVMC plugins.
53 =item B<--view-graph>
55 Show a graphical representation of the compilation graph and exit. Requires that
56 you have I<dot> and I<gv> programs installed. Hidden option, useful for
57 debugging LLVMC plugins.
59 =item B<--write-graph>
61 Write a I<compilation-graph.dot> file in the current directory with the
62 compilation graph description in Graphviz format (identical to the file used by
63 the B<--view-graph> option). The B<-o> option can be used to set the output file
64 name. Hidden option, useful for debugging LLVMC plugins.
66 =item B<--save-temps>
68 Write temporary files to the current directory and do not delete them
69 on exit. Hidden option, useful for debugging.
71 =item B<--help>
73 Print a summary of command-line options and exit.
75 =item B<--help-hidden>
77 Print a summary of command-line options and exit. Print help even for
78 options intended for developers.
80 =item B<--version>
82 Print version information and exit.
84 =item B<@>I<file>
86 Read command-line options from I<file>. The options read are inserted
87 in place of the original @I<file> option. If I<file> does not exist, or
88 cannot be read, then the option will be treated literally, and not
89 removed.
91 Options in I<file> are separated by whitespace. A whitespace character
92 may be included in an option by surrounding the entire option in
93 either single or double quotes. Any character (including a backslash)
94 may be included by prefixing the character to be included with a
95 backslash. The file may itself contain additional @I<file> options;
96 any such options will be processed recursively.
99 =back
102 =head2 Control Options
104 By default, LLVMC is built with some standard configuration libraries
105 that define the following options:
107 =over
109 =item B<-clang>
111 Use Clang instead of llvm-gcc.
113 =item B<-opt>
115 Enable optimization passes with B<opt>. To pass options to the B<opt> program
116 use the B<-Wo,> option.
118 =item B<-I> I<directory>
120 Add a directory to the header file search path.  This option can be
121 repeated.
123 =item B<-L> I<directory>
125 Add I<directory> to the library search path.  This option can be
126 repeated.
128 =item B<-l>I<name>
130 Link in the library libI<name>.[bc | a | so].  This library should
131 be a bitcode library.
133 =item B<-emit-llvm>
135 Make the output be LLVM bitcode (with B<-c>) or assembly (with B<-S>) instead
136 of native object (or assembly).  If B<-emit-llvm> is given without either B<-c>
137 or B<-S> it has no effect.
139 =item B<-Wa>
141 Pass options to assembler.
143 =item B<-Wl>
145 Pass options to linker.
147 =item B<-Wo>
149 Pass options to opt.
151 =back
153 =head1 EXIT STATUS
155 If B<llvmc> succeeds, it will exit with code 0.  Otherwise, if an
156 error occurs, it will exit with a non-zero value. If one of the
157 compilation tools returns a non-zero status, pending actions will be
158 discarded and B<llvmc> will return the same result code as the failing
159 compilation tool.
161 =head1 SEE ALSO
163 L<llvm-gcc|llvmgcc>, L<llvm-g++|llvmgxx>, L<llvm-as|llvm-as>,
164 L<llvm-dis|llvm-dis>, L<llc|llc>, L<llvm-link|llvm-link>
166 =head1 AUTHORS
168 Maintained by the LLVM Team (L<http://llvm.org>).
170 =cut