blob: c86e6600025740bd8ffa4a528b667ade1b792dab [file] [log] [blame]
Reid Spencercbadf802004-11-01 09:21:32 +00001<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
Chris Lattner61757352004-02-27 06:28:34 +00002<html>
3<head>
NAKAMURA Takumi5c6e4df2011-10-31 11:21:59 +00004 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
5 <title>Using The LLVM Libraries</title>
Chris Lattner61757352004-02-27 06:28:34 +00006 <link rel="stylesheet" href="llvm.css" type="text/css">
7</head>
8<body>
NAKAMURA Takumi05d02652011-04-18 23:59:50 +00009<h1>Using The LLVM Libraries</h1>
Chris Lattner61757352004-02-27 06:28:34 +000010<ol>
11 <li><a href="#abstract">Abstract</a></li>
12 <li><a href="#introduction">Introduction</a></li>
Reid Spencer341d7142004-10-31 23:00:25 +000013 <li><a href="#descriptions">Library Descriptions</a></li>
Reid Spencere0f33ae2004-12-30 23:12:04 +000014 <li><a href="#dependencies">Library Dependencies</a></li>
Chris Lattner61757352004-02-27 06:28:34 +000015 <li><a href="#rot">Linkage Rules Of Thumb</a>
16 <ol>
Reid Spencer41482662004-10-31 23:24:31 +000017 <li><a href="#always">Always link LLVMCore, LLVMSupport, LLVMSystem</a>
18 <li><a href="#onlyone">Never link both archive and re-linked</a>
Chris Lattner61757352004-02-27 06:28:34 +000019 </ol>
20 </li>
21</ol>
Chris Lattner7911ce22004-05-23 21:07:27 +000022
23<div class="doc_author">
24 <p>Written by <a href="mailto:rspencer@x10sys.com">Reid Spencer</a></p>
Chris Lattner61757352004-02-27 06:28:34 +000025</div>
Chris Lattner7911ce22004-05-23 21:07:27 +000026
Oscar Fuentesd3a04652010-09-17 00:30:52 +000027<p class="doc_warning">Warning: This document is out of date, for more
28 information please
29 see <a href="CommandGuide/html/llvm-config.html">llvm-config</a> or,
NAKAMURA Takumi4d6deb02011-04-09 09:51:57 +000030 if you use CMake, <a href="CMake.html#embedding">the CMake LLVM
Oscar Fuentesd3a04652010-09-17 00:30:52 +000031 guide</a>.</p>
Tanya Lattnerd006d3a2006-04-20 04:55:50 +000032
Chris Lattner61757352004-02-27 06:28:34 +000033<!-- ======================================================================= -->
NAKAMURA Takumi05d02652011-04-18 23:59:50 +000034<h2><a name="abstract">Abstract</a></h2>
NAKAMURA Takumif5af6ad2011-04-23 00:30:22 +000035<div>
Reid Spencer341d7142004-10-31 23:00:25 +000036 <p>Amongst other things, LLVM is a toolkit for building compilers, linkers,
37 runtime executives, virtual machines, and other program execution related
38 tools. In addition to the LLVM tool set, the functionality of LLVM is
39 available through a set of libraries. To use LLVM as a toolkit for
40 constructing tools, a developer needs to understand what is contained in the
Reid Spencere131ec92006-08-01 07:32:01 +000041 various libraries, what they depend on, and how to use them. Fortunately,
42 there is a tool, <tt>llvm-config</tt> to aid with this. This document
43 describes the contents of the libraries and how to use <tt>llvm-config</tt>
44 to generate command line options.
Chris Lattner61757352004-02-27 06:28:34 +000045</p>
46</div>
Reid Spencer341d7142004-10-31 23:00:25 +000047
Chris Lattner61757352004-02-27 06:28:34 +000048<!-- ======================================================================= -->
NAKAMURA Takumi05d02652011-04-18 23:59:50 +000049<h2><a name="introduction">Introduction</a></h2>
NAKAMURA Takumif5af6ad2011-04-23 00:30:22 +000050<div>
Reid Spencer341d7142004-10-31 23:00:25 +000051 <p>If you're writing a compiler, virtual machine, or any other utility based
52 on LLVM, you'll need to figure out which of the many libraries files you will
53 need to link with to be successful. An understanding of the contents of these
Reid Spencere131ec92006-08-01 07:32:01 +000054 libraries will be useful in coming up with an optimal specification for the
55 libraries to link with. The purpose of this document is to reduce some of
56 the trial and error that the author experienced in using LLVM.</p>
Reid Spencer341d7142004-10-31 23:00:25 +000057 <p>LLVM produces two types of libraries: archives (ending in <tt>.a</tt>) and
58 objects (ending in <tt>.o</tt>). However, both are libraries. Libraries ending
59 in <tt>.o</tt> are known as re-linked libraries because they contain all the
60 compilation units of the library linked together as a single <tt>.o</tt> file.
Reid Spencere131ec92006-08-01 07:32:01 +000061 Furthermore, several of the libraries have <em>both</em> forms of library. The
Reid Spencer341d7142004-10-31 23:00:25 +000062 re-linked libraries are used whenever you want to include all symbols from the
63 library. The archive libraries are used whenever you want to only resolve
64 outstanding symbols at that point in the link without including everything in
65 the library. </p>
Reid Spencere131ec92006-08-01 07:32:01 +000066 <p>If you're using the LLVM Makefile system to link your tools,you will use
67 the <tt>LLVMLIBS</tt> make variable.
Reid Spencer341d7142004-10-31 23:00:25 +000068 (see the <a href="MakefileGuide.html#LLVMLIBS">Makefile Guide</a> for
69 details). This variable specifies which LLVM libraries to link into your tool
70 and the order in which they will be linked. You specify re-linked libraries by
71 naming the library without a suffix. You specify archive libraries by naming
72 the library with a <tt>.a</tt> suffix but without the <tt>lib</tt> prefix. The
73 order in which the libraries appear in the <tt>LLVMLIBS</tt> variable
74 definition is the order in which they will be linked. Getting this order
75 correct for your tool can sometimes be challenging.
Chris Lattner61757352004-02-27 06:28:34 +000076</div>
77<!-- ======================================================================= -->
NAKAMURA Takumi05d02652011-04-18 23:59:50 +000078<h2><a name="descriptions">Library Descriptions</a></h2>
NAKAMURA Takumif5af6ad2011-04-23 00:30:22 +000079<div>
Reid Spencer341d7142004-10-31 23:00:25 +000080 <p>The table below categorizes each library
81<table style="text-align:left">
82 <tr><th>Library</th><th>Forms</th><th>Description</th></tr>
Reid Spencer0a4e8b32004-11-01 09:22:49 +000083 <tr><th colspan="3">Core Libraries</th></tr>
Reid Spencer139e1662004-12-31 00:13:14 +000084 <tr><td>LLVMArchive</td><td><tt>.a</tt></td>
85 <td>LLVM archive reading and writing</td></tr>
Reid Spencere131ec92006-08-01 07:32:01 +000086 <tr><td>LLVMAsmParser</td><td><tt>.a</tt></td>
Reid Spencer139e1662004-12-31 00:13:14 +000087 <td>LLVM assembly parsing</td></tr>
Reid Spencere131ec92006-08-01 07:32:01 +000088 <tr><td>LLVMBCReader</td><td><tt>.a</tt></td>
Gabor Greif04367bf2007-07-06 22:07:22 +000089 <td>LLVM bitcode reading</td></tr>
Reid Spencere131ec92006-08-01 07:32:01 +000090 <tr><td>LLVMBCWriter</td><td><tt>.a</tt></td>
Gabor Greif04367bf2007-07-06 22:07:22 +000091 <td>LLVM bitcode writing</td></tr>
Reid Spencere131ec92006-08-01 07:32:01 +000092 <tr><td>LLVMCore</td><td><tt>.a</tt></td>
Reid Spencer139e1662004-12-31 00:13:14 +000093 <td>LLVM core intermediate representation</td></tr>
Reid Spencere131ec92006-08-01 07:32:01 +000094 <tr><td>LLVMDebugger</td><td><tt>.a</tt></td>
Reid Spencer139e1662004-12-31 00:13:14 +000095 <td>Source level debugging support</td></tr>
96 <tr><td>LLVMLinker</td><td><tt>.a</tt></td>
Gabor Greif04367bf2007-07-06 22:07:22 +000097 <td>Bitcode and archive linking interface</td></tr>
Reid Spencere131ec92006-08-01 07:32:01 +000098 <tr><td>LLVMSupport</td><td><tt>.a</tt></td>
Reid Spencer41482662004-10-31 23:24:31 +000099 <td>General support utilities</td></tr>
Reid Spencere131ec92006-08-01 07:32:01 +0000100 <tr><td>LLVMSystem</td><td><tt>.a</tt></td>
Reid Spencer139e1662004-12-31 00:13:14 +0000101 <td>Operating system abstraction layer</td></tr>
Reid Spencere131ec92006-08-01 07:32:01 +0000102 <tr><td>LLVMbzip2</td><td><tt>.a</tt></td>
103 <td>BZip2 compression library</td></tr>
Reid Spencer341d7142004-10-31 23:00:25 +0000104
Reid Spencer0a4e8b32004-11-01 09:22:49 +0000105 <tr><th colspan="3">Analysis Libraries</th></tr>
Reid Spencere131ec92006-08-01 07:32:01 +0000106 <tr><td>LLVMAnalysis</td><td><tt>.a</tt></td>
Reid Spencer41482662004-10-31 23:24:31 +0000107 <td>Various analysis passes.</td></tr>
Reid Spencere131ec92006-08-01 07:32:01 +0000108 <tr><td>LLVMDataStructure</td><td><tt>.o</tt></td>
Reid Spencer41482662004-10-31 23:24:31 +0000109 <td>Data structure analysis passes.</td></tr>
Reid Spencere131ec92006-08-01 07:32:01 +0000110 <tr><td>LLVMipa</td><td><tt>.a</tt></td>
Reid Spencer41482662004-10-31 23:24:31 +0000111 <td>Inter-procedural analysis passes.</td></tr>
Reid Spencer341d7142004-10-31 23:00:25 +0000112
Reid Spencer0a4e8b32004-11-01 09:22:49 +0000113 <tr><th colspan="3">Transformation Libraries</th></tr>
Reid Spencere131ec92006-08-01 07:32:01 +0000114 <tr><td>LLVMInstrumentation</td><td><tt>.a</tt></td>
Reid Spencer41482662004-10-31 23:24:31 +0000115 <td>Instrumentation passes.</td></tr>
Reid Spencere131ec92006-08-01 07:32:01 +0000116 <tr><td>LLVMipo</td><td><tt>.a</tt></td>
Reid Spencer41482662004-10-31 23:24:31 +0000117 <td>All inter-procedural optimization passes.</td></tr>
Reid Spencere131ec92006-08-01 07:32:01 +0000118 <tr><td>LLVMScalarOpts</td><td><tt>.a</tt></td>
Reid Spencer41482662004-10-31 23:24:31 +0000119 <td>All scalar optimization passes.</td></tr>
Reid Spencere131ec92006-08-01 07:32:01 +0000120 <tr><td>LLVMTransformUtils</td><td><tt>.a</tt></td>
Reid Spencer006c6872007-02-04 00:17:35 +0000121 <td>Transformation utilities used by many passes.</td></tr>
Reid Spencer341d7142004-10-31 23:00:25 +0000122
Reid Spencer0a4e8b32004-11-01 09:22:49 +0000123 <tr><th colspan="3">Code Generation Libraries </th></tr>
Reid Spencer41482662004-10-31 23:24:31 +0000124 <tr><td>LLVMCodeGen</td><td><tt>.o</tt></td>
125 <td>Native code generation infrastructure</td></tr>
Reid Spencere131ec92006-08-01 07:32:01 +0000126 <tr><td>LLVMSelectionDAG</td><td><tt>.o</tt></td>
127 <td>Aggressive instruction selector for directed acyclic graphs</td></tr>
Reid Spencer341d7142004-10-31 23:00:25 +0000128
Reid Spencer0a4e8b32004-11-01 09:22:49 +0000129 <tr><th colspan="3">Target Libraries</th></tr>
Reid Spencere131ec92006-08-01 07:32:01 +0000130 <tr><td>LLVMARM</td><td><tt>.o</tt></td>
131 <td>Code generation for ARM architecture</td></tr>
Reid Spencer41482662004-10-31 23:24:31 +0000132 <tr><td>LLVMCBackend</td><td><tt>.o</tt></td>
133 <td>'C' language code generator.</td></tr>
134 <tr><td>LLVMPowerPC</td><td><tt>.o</tt></td>
Reid Spencerd42037a2006-05-13 02:22:01 +0000135 <td>Code generation for PowerPC architecture</td></tr>
Chris Lattner029e8442006-02-05 06:40:12 +0000136 <tr><td>LLVMSparc</td><td><tt>.o</tt></td>
Reid Spencerd42037a2006-05-13 02:22:01 +0000137 <td>Code generation for Sparc architecture</td></tr>
Reid Spencere131ec92006-08-01 07:32:01 +0000138 <tr><td>LLVMTarget</td><td><tt>.a</tt></td>
Reid Spencer41482662004-10-31 23:24:31 +0000139 <td>Generic code generation utilities.</td></tr>
140 <tr><td>LLVMX86</td><td><tt>.o</tt></td>
Reid Spencerd42037a2006-05-13 02:22:01 +0000141 <td>Code generation for Intel x86 architecture</td></tr>
Reid Spencer341d7142004-10-31 23:00:25 +0000142
Reid Spencer0a4e8b32004-11-01 09:22:49 +0000143 <tr><th colspan="3">Runtime Libraries</th></tr>
Reid Spencer41482662004-10-31 23:24:31 +0000144 <tr><td>LLVMInterpreter</td><td><tt>.o</tt></td>
Gabor Greif04367bf2007-07-06 22:07:22 +0000145 <td>Bitcode Interpreter</td></tr>
Reid Spencer41482662004-10-31 23:24:31 +0000146 <tr><td>LLVMJIT</td><td><tt>.o</tt></td>
Gabor Greif04367bf2007-07-06 22:07:22 +0000147 <td>Bitcode JIT Compiler</td></tr>
Reid Spencer41482662004-10-31 23:24:31 +0000148 <tr><td>LLVMExecutionEngine</td><td><tt>.o</tt></td>
149 <td>Virtual machine engine</td></tr>
Chris Lattner61757352004-02-27 06:28:34 +0000150</table>
151</div>
Reid Spencer341d7142004-10-31 23:00:25 +0000152
Chris Lattner61757352004-02-27 06:28:34 +0000153<!-- ======================================================================= -->
NAKAMURA Takumi05d02652011-04-18 23:59:50 +0000154<h2><a name="dependencies">Using llvm-config</a></h2>
NAKAMURA Takumif5af6ad2011-04-23 00:30:22 +0000155<div>
Reid Spencer704e81f2006-08-01 16:23:54 +0000156 <p>The <tt>llvm-config</tt> tool is a perl script that produces on its output
Reid Spencere131ec92006-08-01 07:32:01 +0000157 various kinds of information. For example, the source or object directories
158 used to build LLVM can be accessed by passing options to <tt>llvm-config</tt>.
159 For complete details on this tool, please see the
160 <a href="CommandGuide/html/llvm-config.html">manual page</a>.</p>
161 <p>To understand the relationships between libraries, the <tt>llvm-config</tt>
162 can be very useful. If all you know is that you want certain libraries to
163 be available, you can generate the complete set of libraries to link with
164 using one of four options, as below:</p>
165 <ol>
166 <li><tt>--ldflags</tt>. This generates the command line options necessary to
167 be passed to the <tt>ld</tt> tool in order to link with LLVM. Most notably,
168 the <tt>-L</tt> option is provided to specify a library search directory
Reid Spencer704e81f2006-08-01 16:23:54 +0000169 that contains the LLVM libraries.</li>
Reid Spencere131ec92006-08-01 07:32:01 +0000170 <li><tt>--libs</tt>. This generates command line options suitable for
171 use with a gcc-style linker. That is, libraries are given with a -l option
172 and object files are given with a full path.</li>
173 <li><tt>--libnames</tt>. This generates a list of just the library file
174 names. If you know the directory in which these files reside (see --ldflags)
175 then you can find the libraries there.</li>
Reid Spencer704e81f2006-08-01 16:23:54 +0000176 <li><tt>--libfiles</tt>. This generates the full path names of the
177 LLVM library files.</li>
Reid Spencere131ec92006-08-01 07:32:01 +0000178 </ol>
179 <p>If you wish to delve further into how <tt>llvm-config</tt> generates the
180 correct order (based on library dependencies), please see the tool named
181 <tt>GenLibDeps.pl</tt> in the <tt>utils</tt> source directory of LLVM.</p>
182
Reid Spencere0f33ae2004-12-30 23:12:04 +0000183 <!-- =======NOTE: =========================================================-->
Reid Spencer43ff9002005-01-03 05:46:46 +0000184 <!-- === The following graphs and <dl> list are generated automatically ===-->
185 <!-- === by the util named GenLibDeps.pl in the llvm/utils directory. ===-->
186 <!-- === This should be updated whenever new libraries are added, ===-->
187 <!-- === removed, or changed ===-->
Reid Spencere0f33ae2004-12-30 23:12:04 +0000188 <!-- =======NOTE: =========================================================-->
NAKAMURA Takumi06c6d9a2011-04-18 01:17:51 +0000189 <h3>Dependency Relationships Of Libraries</h3>
Reid Spencer43ff9002005-01-03 05:46:46 +0000190 <p>This graph shows the dependency of archive libraries on other archive
191 libraries or objects. Where a library has both archive and object forms, only
192 the archive form is shown.</p>
NAKAMURA Takumi4d6deb02011-04-09 09:51:57 +0000193 <img src="img/libdeps.gif" alt="Library Dependencies">
NAKAMURA Takumi06c6d9a2011-04-18 01:17:51 +0000194 <h3>Dependency Relationships Of Object Files</h3>
Reid Spencer43ff9002005-01-03 05:46:46 +0000195 <p>This graph shows the dependency of object files on archive libraries or
196 other objects. Where a library has both object and archive forms, only the
197 dependency to the archive form is shown.</p>
NAKAMURA Takumi4d6deb02011-04-09 09:51:57 +0000198 <img src="img/objdeps.gif" alt="Object File Dependencies">
Reid Spencer43ff9002005-01-03 05:46:46 +0000199 <p>The following list shows the dependency relationships between libraries in
200 textual form. The information is the same as shown on the graphs but arranged
201 alphabetically.</p>
Reid Spencere0f33ae2004-12-30 23:12:04 +0000202<dl>
Dan Gohman364a39f2008-10-14 17:00:38 +0000203 <dt><b>libLLVMAnalysis.a</b></dt><dd><ul>
Reid Spencere131ec92006-08-01 07:32:01 +0000204 <li>libLLVMCore.a</li>
Reid Spencere0f33ae2004-12-30 23:12:04 +0000205 <li>libLLVMSupport.a</li>
206 <li>libLLVMSystem.a</li>
Reid Spencere131ec92006-08-01 07:32:01 +0000207 <li>libLLVMTarget.a</li>
208 </ul></dd>
Dan Gohman364a39f2008-10-14 17:00:38 +0000209 <dt><b>libLLVMArchive.a</b></dt><dd><ul>
Reid Spencere131ec92006-08-01 07:32:01 +0000210 <li>libLLVMBCReader.a</li>
211 <li>libLLVMCore.a</li>
212 <li>libLLVMSupport.a</li>
213 <li>libLLVMSystem.a</li>
214 </ul></dd>
Dan Gohman364a39f2008-10-14 17:00:38 +0000215 <dt><b>libLLVMAsmParser.a</b></dt><dd><ul>
Reid Spencere131ec92006-08-01 07:32:01 +0000216 <li>libLLVMCore.a</li>
Reid Spencere131ec92006-08-01 07:32:01 +0000217 <li>libLLVMSystem.a</li>
218 </ul></dd>
Dan Gohman364a39f2008-10-14 17:00:38 +0000219 <dt><b>libLLVMBCReader.a</b></dt><dd><ul>
Reid Spencere131ec92006-08-01 07:32:01 +0000220 <li>libLLVMCore.a</li>
221 <li>libLLVMSupport.a</li>
222 <li>libLLVMSystem.a</li>
223 </ul></dd>
Dan Gohman364a39f2008-10-14 17:00:38 +0000224 <dt><b>libLLVMBCWriter.a</b></dt><dd><ul>
Reid Spencere131ec92006-08-01 07:32:01 +0000225 <li>libLLVMCore.a</li>
226 <li>libLLVMSupport.a</li>
227 <li>libLLVMSystem.a</li>
228 </ul></dd>
Dan Gohman364a39f2008-10-14 17:00:38 +0000229 <dt><b>libLLVMCodeGen.a</b></dt><dd><ul>
Reid Spencere131ec92006-08-01 07:32:01 +0000230 <li>libLLVMAnalysis.a</li>
231 <li>libLLVMCore.a</li>
Reid Spencer006c6872007-02-04 00:17:35 +0000232 <li>libLLVMScalarOpts.a</li>
Reid Spencere131ec92006-08-01 07:32:01 +0000233 <li>libLLVMSupport.a</li>
234 <li>libLLVMSystem.a</li>
235 <li>libLLVMTarget.a</li>
Reid Spencer006c6872007-02-04 00:17:35 +0000236 <li>libLLVMTransformUtils.a</li>
Reid Spencere131ec92006-08-01 07:32:01 +0000237 </ul></dd>
Dan Gohman364a39f2008-10-14 17:00:38 +0000238 <dt><b>libLLVMCore.a</b></dt><dd><ul>
Reid Spencere131ec92006-08-01 07:32:01 +0000239 <li>libLLVMSupport.a</li>
240 <li>libLLVMSystem.a</li>
241 </ul></dd>
Dan Gohman364a39f2008-10-14 17:00:38 +0000242 <dt><b>libLLVMDebugger.a</b></dt><dd><ul>
Reid Spencere131ec92006-08-01 07:32:01 +0000243 <li>libLLVMBCReader.a</li>
244 <li>libLLVMCore.a</li>
245 <li>libLLVMSupport.a</li>
246 <li>libLLVMSystem.a</li>
Reid Spencere0f33ae2004-12-30 23:12:04 +0000247 </ul></dd>
Dan Gohman364a39f2008-10-14 17:00:38 +0000248 <dt><b>libLLVMInstrumentation.a</b></dt><dd><ul>
Reid Spencere131ec92006-08-01 07:32:01 +0000249 <li>libLLVMCore.a</li>
Reid Spencerd42037a2006-05-13 02:22:01 +0000250 <li>libLLVMScalarOpts.a</li>
Reid Spencere0f33ae2004-12-30 23:12:04 +0000251 <li>libLLVMSupport.a</li>
252 <li>libLLVMTransformUtils.a</li>
Reid Spencere0f33ae2004-12-30 23:12:04 +0000253 </ul></dd>
Dan Gohman364a39f2008-10-14 17:00:38 +0000254 <dt><b>libLLVMLinker.a</b></dt><dd><ul>
Reid Spencere0f33ae2004-12-30 23:12:04 +0000255 <li>libLLVMArchive.a</li>
Reid Spencere131ec92006-08-01 07:32:01 +0000256 <li>libLLVMBCReader.a</li>
257 <li>libLLVMCore.a</li>
Reid Spencer006c6872007-02-04 00:17:35 +0000258 <li>libLLVMSupport.a</li>
Reid Spencere0f33ae2004-12-30 23:12:04 +0000259 <li>libLLVMSystem.a</li>
Reid Spencere0f33ae2004-12-30 23:12:04 +0000260 </ul></dd>
Dan Gohman364a39f2008-10-14 17:00:38 +0000261 <dt><b>libLLVMScalarOpts.a</b></dt><dd><ul>
Reid Spencere0f33ae2004-12-30 23:12:04 +0000262 <li>libLLVMAnalysis.a</li>
Reid Spencere131ec92006-08-01 07:32:01 +0000263 <li>libLLVMCore.a</li>
Reid Spencere0f33ae2004-12-30 23:12:04 +0000264 <li>libLLVMSupport.a</li>
Reid Spencere131ec92006-08-01 07:32:01 +0000265 <li>libLLVMSystem.a</li>
Reid Spencere0f33ae2004-12-30 23:12:04 +0000266 <li>libLLVMTarget.a</li>
267 <li>libLLVMTransformUtils.a</li>
Reid Spencere131ec92006-08-01 07:32:01 +0000268 </ul></dd>
Dan Gohman364a39f2008-10-14 17:00:38 +0000269 <dt><b>libLLVMSelectionDAG.a</b></dt><dd><ul>
Reid Spencer006c6872007-02-04 00:17:35 +0000270 <li>libLLVMAnalysis.a</li>
Reid Spencere131ec92006-08-01 07:32:01 +0000271 <li>libLLVMCodeGen.a</li>
272 <li>libLLVMCore.a</li>
273 <li>libLLVMSupport.a</li>
274 <li>libLLVMSystem.a</li>
275 <li>libLLVMTarget.a</li>
276 <li>libLLVMTransformUtils.a</li>
Reid Spencere0f33ae2004-12-30 23:12:04 +0000277 </ul></dd>
Dan Gohman364a39f2008-10-14 17:00:38 +0000278 <dt><b>libLLVMSupport.a</b></dt><dd><ul>
Reid Spencere0f33ae2004-12-30 23:12:04 +0000279 <li>libLLVMSystem.a</li>
Reid Spencere131ec92006-08-01 07:32:01 +0000280 <li>libLLVMbzip2.a</li>
Reid Spencere0f33ae2004-12-30 23:12:04 +0000281 </ul></dd>
NAKAMURA Takumi4d6deb02011-04-09 09:51:57 +0000282 <dt><b>libLLVMSystem.a</b></dt><dd>
283 </dd>
Dan Gohman364a39f2008-10-14 17:00:38 +0000284 <dt><b>libLLVMTarget.a</b></dt><dd><ul>
Reid Spencere131ec92006-08-01 07:32:01 +0000285 <li>libLLVMCore.a</li>
Reid Spencere0f33ae2004-12-30 23:12:04 +0000286 <li>libLLVMSupport.a</li>
Reid Spencere131ec92006-08-01 07:32:01 +0000287 <li>libLLVMSystem.a</li>
Reid Spencere0f33ae2004-12-30 23:12:04 +0000288 </ul></dd>
Dan Gohman364a39f2008-10-14 17:00:38 +0000289 <dt><b>libLLVMTransformUtils.a</b></dt><dd><ul>
Reid Spencere0f33ae2004-12-30 23:12:04 +0000290 <li>libLLVMAnalysis.a</li>
Reid Spencere131ec92006-08-01 07:32:01 +0000291 <li>libLLVMCore.a</li>
Reid Spencere0f33ae2004-12-30 23:12:04 +0000292 <li>libLLVMSupport.a</li>
Reid Spencere131ec92006-08-01 07:32:01 +0000293 <li>libLLVMSystem.a</li>
Reid Spencer006c6872007-02-04 00:17:35 +0000294 <li>libLLVMTarget.a</li>
Reid Spencere131ec92006-08-01 07:32:01 +0000295 <li>libLLVMipa.a</li>
Reid Spencere0f33ae2004-12-30 23:12:04 +0000296 </ul></dd>
NAKAMURA Takumi4d6deb02011-04-09 09:51:57 +0000297 <dt><b>libLLVMbzip2.a</b></dt><dd>
298 </dd>
Dan Gohman364a39f2008-10-14 17:00:38 +0000299 <dt><b>libLLVMipa.a</b></dt><dd><ul>
Reid Spencere0f33ae2004-12-30 23:12:04 +0000300 <li>libLLVMAnalysis.a</li>
Reid Spencere131ec92006-08-01 07:32:01 +0000301 <li>libLLVMCore.a</li>
Reid Spencere0f33ae2004-12-30 23:12:04 +0000302 <li>libLLVMSupport.a</li>
Reid Spencere131ec92006-08-01 07:32:01 +0000303 <li>libLLVMSystem.a</li>
Reid Spencere0f33ae2004-12-30 23:12:04 +0000304 </ul></dd>
Dan Gohman364a39f2008-10-14 17:00:38 +0000305 <dt><b>libLLVMipo.a</b></dt><dd><ul>
Reid Spencere0f33ae2004-12-30 23:12:04 +0000306 <li>libLLVMAnalysis.a</li>
Reid Spencere131ec92006-08-01 07:32:01 +0000307 <li>libLLVMCore.a</li>
Reid Spencere0f33ae2004-12-30 23:12:04 +0000308 <li>libLLVMSupport.a</li>
309 <li>libLLVMSystem.a</li>
Reid Spencere131ec92006-08-01 07:32:01 +0000310 <li>libLLVMTarget.a</li>
311 <li>libLLVMTransformUtils.a</li>
312 <li>libLLVMipa.a</li>
Reid Spencere0f33ae2004-12-30 23:12:04 +0000313 </ul></dd>
Dan Gohman364a39f2008-10-14 17:00:38 +0000314 <dt><b>libLLVMlto.a</b></dt><dd><ul>
Reid Spencer006c6872007-02-04 00:17:35 +0000315 <li>libLLVMAnalysis.a</li>
316 <li>libLLVMBCReader.a</li>
317 <li>libLLVMBCWriter.a</li>
318 <li>libLLVMCore.a</li>
319 <li>libLLVMLinker.a</li>
320 <li>libLLVMScalarOpts.a</li>
321 <li>libLLVMSupport.a</li>
322 <li>libLLVMSystem.a</li>
323 <li>libLLVMTarget.a</li>
324 <li>libLLVMipa.a</li>
325 <li>libLLVMipo.a</li>
326 </ul></dd>
Dan Gohman364a39f2008-10-14 17:00:38 +0000327 <dt><b>LLVMARM.o</b></dt><dd><ul>
Reid Spencere131ec92006-08-01 07:32:01 +0000328 <li>libLLVMCodeGen.a</li>
329 <li>libLLVMCore.a</li>
Reid Spencere131ec92006-08-01 07:32:01 +0000330 <li>libLLVMSelectionDAG.a</li>
Reid Spencere0f33ae2004-12-30 23:12:04 +0000331 <li>libLLVMSupport.a</li>
Reid Spencere131ec92006-08-01 07:32:01 +0000332 <li>libLLVMSystem.a</li>
333 <li>libLLVMTarget.a</li>
334 </ul></dd>
Dan Gohman364a39f2008-10-14 17:00:38 +0000335 <dt><b>LLVMCBackend.o</b></dt><dd><ul>
Reid Spencere0f33ae2004-12-30 23:12:04 +0000336 <li>libLLVMAnalysis.a</li>
Reid Spencere131ec92006-08-01 07:32:01 +0000337 <li>libLLVMCodeGen.a</li>
338 <li>libLLVMCore.a</li>
Reid Spencere0f33ae2004-12-30 23:12:04 +0000339 <li>libLLVMScalarOpts.a</li>
340 <li>libLLVMSupport.a</li>
Reid Spencere131ec92006-08-01 07:32:01 +0000341 <li>libLLVMSystem.a</li>
Reid Spencere0f33ae2004-12-30 23:12:04 +0000342 <li>libLLVMTarget.a</li>
Reid Spencer006c6872007-02-04 00:17:35 +0000343 <li>libLLVMTransformUtils.a</li>
Reid Spencere131ec92006-08-01 07:32:01 +0000344 <li>libLLVMipa.a</li>
Reid Spencere0f33ae2004-12-30 23:12:04 +0000345 </ul></dd>
Dan Gohman364a39f2008-10-14 17:00:38 +0000346 <dt><b>LLVMExecutionEngine.o</b></dt><dd><ul>
Reid Spencere131ec92006-08-01 07:32:01 +0000347 <li>libLLVMCore.a</li>
Reid Spencere0f33ae2004-12-30 23:12:04 +0000348 <li>libLLVMSupport.a</li>
349 <li>libLLVMSystem.a</li>
350 <li>libLLVMTarget.a</li>
Reid Spencere0f33ae2004-12-30 23:12:04 +0000351 </ul></dd>
Dan Gohman364a39f2008-10-14 17:00:38 +0000352 <dt><b>LLVMInterpreter.o</b></dt><dd><ul>
Reid Spencere131ec92006-08-01 07:32:01 +0000353 <li>LLVMExecutionEngine.o</li>
Reid Spencer006c6872007-02-04 00:17:35 +0000354 <li>libLLVMCodeGen.a</li>
Reid Spencere131ec92006-08-01 07:32:01 +0000355 <li>libLLVMCore.a</li>
Reid Spencere0f33ae2004-12-30 23:12:04 +0000356 <li>libLLVMSupport.a</li>
357 <li>libLLVMSystem.a</li>
358 <li>libLLVMTarget.a</li>
Reid Spencere0f33ae2004-12-30 23:12:04 +0000359 </ul></dd>
Dan Gohman364a39f2008-10-14 17:00:38 +0000360 <dt><b>LLVMJIT.o</b></dt><dd><ul>
Reid Spencere131ec92006-08-01 07:32:01 +0000361 <li>LLVMExecutionEngine.o</li>
Reid Spencere131ec92006-08-01 07:32:01 +0000362 <li>libLLVMCore.a</li>
Reid Spencere0f33ae2004-12-30 23:12:04 +0000363 <li>libLLVMSupport.a</li>
364 <li>libLLVMSystem.a</li>
365 <li>libLLVMTarget.a</li>
Reid Spencere0f33ae2004-12-30 23:12:04 +0000366 </ul></dd>
Dan Gohman364a39f2008-10-14 17:00:38 +0000367 <dt><b>LLVMPowerPC.o</b></dt><dd><ul>
Reid Spencere131ec92006-08-01 07:32:01 +0000368 <li>libLLVMCodeGen.a</li>
369 <li>libLLVMCore.a</li>
Reid Spencere131ec92006-08-01 07:32:01 +0000370 <li>libLLVMSelectionDAG.a</li>
Reid Spencerd42037a2006-05-13 02:22:01 +0000371 <li>libLLVMSupport.a</li>
372 <li>libLLVMSystem.a</li>
Reid Spencere0f33ae2004-12-30 23:12:04 +0000373 <li>libLLVMTarget.a</li>
Reid Spencere0f33ae2004-12-30 23:12:04 +0000374 </ul></dd>
Dan Gohman364a39f2008-10-14 17:00:38 +0000375 <dt><b>LLVMSparc.o</b></dt><dd><ul>
Reid Spencere131ec92006-08-01 07:32:01 +0000376 <li>libLLVMCodeGen.a</li>
377 <li>libLLVMCore.a</li>
Reid Spencere131ec92006-08-01 07:32:01 +0000378 <li>libLLVMSelectionDAG.a</li>
Reid Spencere0f33ae2004-12-30 23:12:04 +0000379 <li>libLLVMSupport.a</li>
Reid Spencere131ec92006-08-01 07:32:01 +0000380 <li>libLLVMSystem.a</li>
Reid Spencere0f33ae2004-12-30 23:12:04 +0000381 <li>libLLVMTarget.a</li>
Reid Spencere0f33ae2004-12-30 23:12:04 +0000382 </ul></dd>
Dan Gohman364a39f2008-10-14 17:00:38 +0000383 <dt><b>LLVMX86.o</b></dt><dd><ul>
Reid Spencere131ec92006-08-01 07:32:01 +0000384 <li>libLLVMCodeGen.a</li>
385 <li>libLLVMCore.a</li>
Reid Spencere131ec92006-08-01 07:32:01 +0000386 <li>libLLVMSelectionDAG.a</li>
Reid Spencere0f33ae2004-12-30 23:12:04 +0000387 <li>libLLVMSupport.a</li>
Reid Spencere131ec92006-08-01 07:32:01 +0000388 <li>libLLVMSystem.a</li>
Reid Spencere0f33ae2004-12-30 23:12:04 +0000389 <li>libLLVMTarget.a</li>
Reid Spencere0f33ae2004-12-30 23:12:04 +0000390 </ul></dd>
391</dl>
392</div>
393
394<!-- ======================================================================= -->
NAKAMURA Takumi05d02652011-04-18 23:59:50 +0000395<h2><a name="rot">Linkage Rules Of Thumb</a></h2>
NAKAMURA Takumif5af6ad2011-04-23 00:30:22 +0000396<div>
Chris Lattner61757352004-02-27 06:28:34 +0000397 <p>This section contains various "rules of thumb" about what files you
398 should link into your programs.</p>
Chris Lattner61757352004-02-27 06:28:34 +0000399<!-- ======================================================================= -->
NAKAMURA Takumi05d02652011-04-18 23:59:50 +0000400<h3>
401 <a name="always">Always Link LLVMCore, LLVMSupport, and LLVMSystem</a>
402</h3>
NAKAMURA Takumif5af6ad2011-04-23 00:30:22 +0000403<div>
Reid Spencer52afa7e2004-11-08 00:26:32 +0000404 <p>No matter what you do with LLVM, the last three entries in the value of
405 your LLVMLIBS make variable should always be:
406 <tt>LLVMCore LLVMSupport.a LLVMSystem.a</tt>. There are no <tt>LLVM</tt>
407 programs that don't depend on these three.</p>
Chris Lattner61757352004-02-27 06:28:34 +0000408</div>
409<!-- ======================================================================= -->
NAKAMURA Takumi05d02652011-04-18 23:59:50 +0000410<h3>
411 <a name="onlyone">Never link both archive and re-linked library</a>
412</h3>
NAKAMURA Takumif5af6ad2011-04-23 00:30:22 +0000413<div>
Reid Spencer341d7142004-10-31 23:00:25 +0000414 <p>There is never any point to linking both the re-linked (<tt>.o</tt>) and
415 the archive (<tt>.a</tt>) versions of a library. Since the re-linked version
416 includes the entire library, the archive version will not resolve any symbols.
Reid Spencer347e2882004-11-08 00:24:43 +0000417 You could even end up with link error if you place the archive version before
Reid Spencer341d7142004-10-31 23:00:25 +0000418 the re-linked version on the linker's command line.</p>
Chris Lattner61757352004-02-27 06:28:34 +0000419</div>
NAKAMURA Takumif5af6ad2011-04-23 00:30:22 +0000420
421</div>
422
Chris Lattner61757352004-02-27 06:28:34 +0000423<!-- ======================================================================= -->
424<hr>
425<div class="doc_footer">
Reid Spencerbd722412004-11-01 09:19:53 +0000426<address>
427 <a href="http://jigsaw.w3.org/css-validator/check/referer"><img
NAKAMURA Takumi4d6deb02011-04-09 09:51:57 +0000428 src="http://jigsaw.w3.org/css-validator/images/vcss-blue" alt="Valid CSS"></a>
Reid Spencerbd722412004-11-01 09:19:53 +0000429 <a href="http://validator.w3.org/check/referer"><img
Misha Brukmanf00ddb02008-12-11 18:23:24 +0000430 src="http://www.w3.org/Icons/valid-html401-blue" alt="Valid HTML 4.01"></a>
Reid Spencerbd722412004-11-01 09:19:53 +0000431 <a href="mailto:rspencer@x10sys.com">Reid Spencer</a>
432</address>
NAKAMURA Takumib9a33632011-04-09 02:13:37 +0000433<a href="http://llvm.org/">The LLVM Compiler Infrastructure</a>
Chris Lattner61757352004-02-27 06:28:34 +0000434<br>Last modified: $Date$ </div>
435</body>
436</html>
437<!-- vim: sw=2 ts=2 ai
438-->