| Reid Spencer | cbadf80 | 2004-11-01 09:21:32 +0000 | [diff] [blame] | 1 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> | 
| Chris Lattner | 6175735 | 2004-02-27 06:28:34 +0000 | [diff] [blame] | 2 | <html> | 
|  | 3 | <head> | 
| Reid Spencer | 341d714 | 2004-10-31 23:00:25 +0000 | [diff] [blame] | 4 | <title>Using The LLVM Libraries</title> | 
| Chris Lattner | 6175735 | 2004-02-27 06:28:34 +0000 | [diff] [blame] | 5 | <link rel="stylesheet" href="llvm.css" type="text/css"> | 
|  | 6 | </head> | 
|  | 7 | <body> | 
| Reid Spencer | 341d714 | 2004-10-31 23:00:25 +0000 | [diff] [blame] | 8 | <div class="doc_title">Using The LLVM Libraries</div> | 
| Chris Lattner | 6175735 | 2004-02-27 06:28:34 +0000 | [diff] [blame] | 9 | <ol> | 
|  | 10 | <li><a href="#abstract">Abstract</a></li> | 
|  | 11 | <li><a href="#introduction">Introduction</a></li> | 
| Reid Spencer | 341d714 | 2004-10-31 23:00:25 +0000 | [diff] [blame] | 12 | <li><a href="#descriptions">Library Descriptions</a></li> | 
| Reid Spencer | e0f33ae | 2004-12-30 23:12:04 +0000 | [diff] [blame] | 13 | <li><a href="#dependencies">Library Dependencies</a></li> | 
| Chris Lattner | 6175735 | 2004-02-27 06:28:34 +0000 | [diff] [blame] | 14 | <li><a href="#rot">Linkage Rules Of Thumb</a> | 
|  | 15 | <ol> | 
| Reid Spencer | 4148266 | 2004-10-31 23:24:31 +0000 | [diff] [blame] | 16 | <li><a href="#always">Always link LLVMCore, LLVMSupport, LLVMSystem</a> | 
|  | 17 | <li><a href="#onlyone">Never link both archive and re-linked</a> | 
| Chris Lattner | 6175735 | 2004-02-27 06:28:34 +0000 | [diff] [blame] | 18 | </ol> | 
|  | 19 | </li> | 
|  | 20 | </ol> | 
| Chris Lattner | 7911ce2 | 2004-05-23 21:07:27 +0000 | [diff] [blame] | 21 |  | 
|  | 22 | <div class="doc_author"> | 
|  | 23 | <p>Written by <a href="mailto:rspencer@x10sys.com">Reid Spencer</a></p> | 
| Chris Lattner | 6175735 | 2004-02-27 06:28:34 +0000 | [diff] [blame] | 24 | </div> | 
| Chris Lattner | 7911ce2 | 2004-05-23 21:07:27 +0000 | [diff] [blame] | 25 |  | 
| Oscar Fuentes | d3a0465 | 2010-09-17 00:30:52 +0000 | [diff] [blame] | 26 | <p class="doc_warning">Warning: This document is out of date, for more | 
|  | 27 | information please | 
|  | 28 | see <a href="CommandGuide/html/llvm-config.html">llvm-config</a> or, | 
| NAKAMURA Takumi | 4d6deb0 | 2011-04-09 09:51:57 +0000 | [diff] [blame^] | 29 | if you use CMake, <a href="CMake.html#embedding">the CMake LLVM | 
| Oscar Fuentes | d3a0465 | 2010-09-17 00:30:52 +0000 | [diff] [blame] | 30 | guide</a>.</p> | 
| Tanya Lattner | d006d3a | 2006-04-20 04:55:50 +0000 | [diff] [blame] | 31 |  | 
| Chris Lattner | 6175735 | 2004-02-27 06:28:34 +0000 | [diff] [blame] | 32 | <!-- ======================================================================= --> | 
|  | 33 | <div class="doc_section"><a name="abstract">Abstract</a></div> | 
|  | 34 | <div class="doc_text"> | 
| Reid Spencer | 341d714 | 2004-10-31 23:00:25 +0000 | [diff] [blame] | 35 | <p>Amongst other things, LLVM is a toolkit for building compilers, linkers, | 
|  | 36 | runtime executives, virtual machines, and other program execution related | 
|  | 37 | tools. In addition to the LLVM tool set, the functionality of LLVM is | 
|  | 38 | available through a set of libraries.  To use LLVM as a toolkit for | 
|  | 39 | constructing tools, a developer needs to understand what is contained in the | 
| Reid Spencer | e131ec9 | 2006-08-01 07:32:01 +0000 | [diff] [blame] | 40 | various libraries, what they depend on, and how to use them.  Fortunately, | 
|  | 41 | there is a tool, <tt>llvm-config</tt> to aid with this. This document | 
|  | 42 | describes the contents of the libraries and how to use <tt>llvm-config</tt> | 
|  | 43 | to generate command line options. | 
| Chris Lattner | 6175735 | 2004-02-27 06:28:34 +0000 | [diff] [blame] | 44 | </p> | 
|  | 45 | </div> | 
| Reid Spencer | 341d714 | 2004-10-31 23:00:25 +0000 | [diff] [blame] | 46 |  | 
| Chris Lattner | 6175735 | 2004-02-27 06:28:34 +0000 | [diff] [blame] | 47 | <!-- ======================================================================= --> | 
|  | 48 | <div class="doc_section"> <a name="introduction">Introduction</a></div> | 
|  | 49 | <div class="doc_text"> | 
| Reid Spencer | 341d714 | 2004-10-31 23:00:25 +0000 | [diff] [blame] | 50 | <p>If you're writing a compiler, virtual machine, or any other utility based | 
|  | 51 | on LLVM, you'll need to figure out which of the many libraries files you will | 
|  | 52 | need to link with to be successful. An understanding of the contents of these | 
| Reid Spencer | e131ec9 | 2006-08-01 07:32:01 +0000 | [diff] [blame] | 53 | libraries will be useful in coming up with an optimal specification for the | 
|  | 54 | libraries to link with. The purpose of this document is to reduce some of | 
|  | 55 | the trial and error that the author experienced in using LLVM.</p> | 
| Reid Spencer | 341d714 | 2004-10-31 23:00:25 +0000 | [diff] [blame] | 56 | <p>LLVM produces two types of libraries: archives (ending in <tt>.a</tt>) and | 
|  | 57 | objects (ending in <tt>.o</tt>). However, both are libraries. Libraries ending | 
|  | 58 | in <tt>.o</tt> are known as re-linked libraries because they contain all the | 
|  | 59 | compilation units of the library linked together as a single <tt>.o</tt> file. | 
| Reid Spencer | e131ec9 | 2006-08-01 07:32:01 +0000 | [diff] [blame] | 60 | Furthermore, several of the libraries have <em>both</em> forms of library. The | 
| Reid Spencer | 341d714 | 2004-10-31 23:00:25 +0000 | [diff] [blame] | 61 | re-linked libraries are used whenever you want to include all symbols from the | 
|  | 62 | library. The archive libraries are used whenever you want to only resolve | 
|  | 63 | outstanding symbols at that point in the link without including everything in | 
|  | 64 | the library. </p> | 
| Reid Spencer | e131ec9 | 2006-08-01 07:32:01 +0000 | [diff] [blame] | 65 | <p>If you're using the LLVM Makefile system to link your tools,you will use | 
|  | 66 | the <tt>LLVMLIBS</tt> make variable. | 
| Reid Spencer | 341d714 | 2004-10-31 23:00:25 +0000 | [diff] [blame] | 67 | (see the <a href="MakefileGuide.html#LLVMLIBS">Makefile Guide</a> for | 
|  | 68 | details). This variable specifies which LLVM libraries to link into your tool | 
|  | 69 | and the order in which they will be linked. You specify re-linked libraries by | 
|  | 70 | naming the library without a suffix. You specify archive libraries by naming | 
|  | 71 | the library with a <tt>.a</tt> suffix but without the <tt>lib</tt> prefix. The | 
|  | 72 | order in which the libraries appear in the <tt>LLVMLIBS</tt> variable | 
|  | 73 | definition is the order in which they will be linked. Getting this order | 
|  | 74 | correct for your tool can sometimes be challenging. | 
| Chris Lattner | 6175735 | 2004-02-27 06:28:34 +0000 | [diff] [blame] | 75 | </div> | 
|  | 76 | <!-- ======================================================================= --> | 
| Reid Spencer | 341d714 | 2004-10-31 23:00:25 +0000 | [diff] [blame] | 77 | <div class="doc_section"><a name="descriptions"></a>Library Descriptions</div> | 
| Chris Lattner | 6175735 | 2004-02-27 06:28:34 +0000 | [diff] [blame] | 78 | <div class="doc_text"> | 
| Reid Spencer | 341d714 | 2004-10-31 23:00:25 +0000 | [diff] [blame] | 79 | <p>The table below categorizes each library | 
|  | 80 | <table style="text-align:left"> | 
|  | 81 | <tr><th>Library</th><th>Forms</th><th>Description</th></tr> | 
| Reid Spencer | 0a4e8b3 | 2004-11-01 09:22:49 +0000 | [diff] [blame] | 82 | <tr><th colspan="3">Core Libraries</th></tr> | 
| Reid Spencer | 139e166 | 2004-12-31 00:13:14 +0000 | [diff] [blame] | 83 | <tr><td>LLVMArchive</td><td><tt>.a</tt></td> | 
|  | 84 | <td>LLVM archive reading and writing</td></tr> | 
| Reid Spencer | e131ec9 | 2006-08-01 07:32:01 +0000 | [diff] [blame] | 85 | <tr><td>LLVMAsmParser</td><td><tt>.a</tt></td> | 
| Reid Spencer | 139e166 | 2004-12-31 00:13:14 +0000 | [diff] [blame] | 86 | <td>LLVM assembly parsing</td></tr> | 
| Reid Spencer | e131ec9 | 2006-08-01 07:32:01 +0000 | [diff] [blame] | 87 | <tr><td>LLVMBCReader</td><td><tt>.a</tt></td> | 
| Gabor Greif | 04367bf | 2007-07-06 22:07:22 +0000 | [diff] [blame] | 88 | <td>LLVM bitcode reading</td></tr> | 
| Reid Spencer | e131ec9 | 2006-08-01 07:32:01 +0000 | [diff] [blame] | 89 | <tr><td>LLVMBCWriter</td><td><tt>.a</tt></td> | 
| Gabor Greif | 04367bf | 2007-07-06 22:07:22 +0000 | [diff] [blame] | 90 | <td>LLVM bitcode writing</td></tr> | 
| Reid Spencer | e131ec9 | 2006-08-01 07:32:01 +0000 | [diff] [blame] | 91 | <tr><td>LLVMCore</td><td><tt>.a</tt></td> | 
| Reid Spencer | 139e166 | 2004-12-31 00:13:14 +0000 | [diff] [blame] | 92 | <td>LLVM core intermediate representation</td></tr> | 
| Reid Spencer | e131ec9 | 2006-08-01 07:32:01 +0000 | [diff] [blame] | 93 | <tr><td>LLVMDebugger</td><td><tt>.a</tt></td> | 
| Reid Spencer | 139e166 | 2004-12-31 00:13:14 +0000 | [diff] [blame] | 94 | <td>Source level debugging support</td></tr> | 
|  | 95 | <tr><td>LLVMLinker</td><td><tt>.a</tt></td> | 
| Gabor Greif | 04367bf | 2007-07-06 22:07:22 +0000 | [diff] [blame] | 96 | <td>Bitcode and archive linking interface</td></tr> | 
| Reid Spencer | e131ec9 | 2006-08-01 07:32:01 +0000 | [diff] [blame] | 97 | <tr><td>LLVMSupport</td><td><tt>.a</tt></td> | 
| Reid Spencer | 4148266 | 2004-10-31 23:24:31 +0000 | [diff] [blame] | 98 | <td>General support utilities</td></tr> | 
| Reid Spencer | e131ec9 | 2006-08-01 07:32:01 +0000 | [diff] [blame] | 99 | <tr><td>LLVMSystem</td><td><tt>.a</tt></td> | 
| Reid Spencer | 139e166 | 2004-12-31 00:13:14 +0000 | [diff] [blame] | 100 | <td>Operating system abstraction layer</td></tr> | 
| Reid Spencer | e131ec9 | 2006-08-01 07:32:01 +0000 | [diff] [blame] | 101 | <tr><td>LLVMbzip2</td><td><tt>.a</tt></td> | 
|  | 102 | <td>BZip2 compression library</td></tr> | 
| Reid Spencer | 341d714 | 2004-10-31 23:00:25 +0000 | [diff] [blame] | 103 |  | 
| Reid Spencer | 0a4e8b3 | 2004-11-01 09:22:49 +0000 | [diff] [blame] | 104 | <tr><th colspan="3">Analysis Libraries</th></tr> | 
| Reid Spencer | e131ec9 | 2006-08-01 07:32:01 +0000 | [diff] [blame] | 105 | <tr><td>LLVMAnalysis</td><td><tt>.a</tt></td> | 
| Reid Spencer | 4148266 | 2004-10-31 23:24:31 +0000 | [diff] [blame] | 106 | <td>Various analysis passes.</td></tr> | 
| Reid Spencer | e131ec9 | 2006-08-01 07:32:01 +0000 | [diff] [blame] | 107 | <tr><td>LLVMDataStructure</td><td><tt>.o</tt></td> | 
| Reid Spencer | 4148266 | 2004-10-31 23:24:31 +0000 | [diff] [blame] | 108 | <td>Data structure analysis passes.</td></tr> | 
| Reid Spencer | e131ec9 | 2006-08-01 07:32:01 +0000 | [diff] [blame] | 109 | <tr><td>LLVMipa</td><td><tt>.a</tt></td> | 
| Reid Spencer | 4148266 | 2004-10-31 23:24:31 +0000 | [diff] [blame] | 110 | <td>Inter-procedural analysis passes.</td></tr> | 
| Reid Spencer | 341d714 | 2004-10-31 23:00:25 +0000 | [diff] [blame] | 111 |  | 
| Reid Spencer | 0a4e8b3 | 2004-11-01 09:22:49 +0000 | [diff] [blame] | 112 | <tr><th colspan="3">Transformation Libraries</th></tr> | 
| Reid Spencer | e131ec9 | 2006-08-01 07:32:01 +0000 | [diff] [blame] | 113 | <tr><td>LLVMInstrumentation</td><td><tt>.a</tt></td> | 
| Reid Spencer | 4148266 | 2004-10-31 23:24:31 +0000 | [diff] [blame] | 114 | <td>Instrumentation passes.</td></tr> | 
| Reid Spencer | e131ec9 | 2006-08-01 07:32:01 +0000 | [diff] [blame] | 115 | <tr><td>LLVMipo</td><td><tt>.a</tt></td> | 
| Reid Spencer | 4148266 | 2004-10-31 23:24:31 +0000 | [diff] [blame] | 116 | <td>All inter-procedural optimization passes.</td></tr> | 
| Reid Spencer | e131ec9 | 2006-08-01 07:32:01 +0000 | [diff] [blame] | 117 | <tr><td>LLVMScalarOpts</td><td><tt>.a</tt></td> | 
| Reid Spencer | 4148266 | 2004-10-31 23:24:31 +0000 | [diff] [blame] | 118 | <td>All scalar optimization passes.</td></tr> | 
| Reid Spencer | e131ec9 | 2006-08-01 07:32:01 +0000 | [diff] [blame] | 119 | <tr><td>LLVMTransformUtils</td><td><tt>.a</tt></td> | 
| Reid Spencer | 006c687 | 2007-02-04 00:17:35 +0000 | [diff] [blame] | 120 | <td>Transformation utilities used by many passes.</td></tr> | 
| Reid Spencer | 341d714 | 2004-10-31 23:00:25 +0000 | [diff] [blame] | 121 |  | 
| Reid Spencer | 0a4e8b3 | 2004-11-01 09:22:49 +0000 | [diff] [blame] | 122 | <tr><th colspan="3">Code Generation Libraries </th></tr> | 
| Reid Spencer | 4148266 | 2004-10-31 23:24:31 +0000 | [diff] [blame] | 123 | <tr><td>LLVMCodeGen</td><td><tt>.o</tt></td> | 
|  | 124 | <td>Native code generation infrastructure</td></tr> | 
| Reid Spencer | e131ec9 | 2006-08-01 07:32:01 +0000 | [diff] [blame] | 125 | <tr><td>LLVMSelectionDAG</td><td><tt>.o</tt></td> | 
|  | 126 | <td>Aggressive instruction selector for directed acyclic graphs</td></tr> | 
| Reid Spencer | 341d714 | 2004-10-31 23:00:25 +0000 | [diff] [blame] | 127 |  | 
| Reid Spencer | 0a4e8b3 | 2004-11-01 09:22:49 +0000 | [diff] [blame] | 128 | <tr><th colspan="3">Target Libraries</th></tr> | 
| Reid Spencer | d42037a | 2006-05-13 02:22:01 +0000 | [diff] [blame] | 129 | <tr><td>LLVMAlpha</td><td><tt>.o</tt></td> | 
|  | 130 | <td>Code generation for Alpha architecture</td></tr> | 
| Reid Spencer | e131ec9 | 2006-08-01 07:32:01 +0000 | [diff] [blame] | 131 | <tr><td>LLVMARM</td><td><tt>.o</tt></td> | 
|  | 132 | <td>Code generation for ARM architecture</td></tr> | 
| Reid Spencer | 4148266 | 2004-10-31 23:24:31 +0000 | [diff] [blame] | 133 | <tr><td>LLVMCBackend</td><td><tt>.o</tt></td> | 
|  | 134 | <td>'C' language code generator.</td></tr> | 
|  | 135 | <tr><td>LLVMPowerPC</td><td><tt>.o</tt></td> | 
| Reid Spencer | d42037a | 2006-05-13 02:22:01 +0000 | [diff] [blame] | 136 | <td>Code generation for PowerPC architecture</td></tr> | 
| Chris Lattner | 029e844 | 2006-02-05 06:40:12 +0000 | [diff] [blame] | 137 | <tr><td>LLVMSparc</td><td><tt>.o</tt></td> | 
| Reid Spencer | d42037a | 2006-05-13 02:22:01 +0000 | [diff] [blame] | 138 | <td>Code generation for Sparc architecture</td></tr> | 
| Reid Spencer | e131ec9 | 2006-08-01 07:32:01 +0000 | [diff] [blame] | 139 | <tr><td>LLVMTarget</td><td><tt>.a</tt></td> | 
| Reid Spencer | 4148266 | 2004-10-31 23:24:31 +0000 | [diff] [blame] | 140 | <td>Generic code generation utilities.</td></tr> | 
|  | 141 | <tr><td>LLVMX86</td><td><tt>.o</tt></td> | 
| Reid Spencer | d42037a | 2006-05-13 02:22:01 +0000 | [diff] [blame] | 142 | <td>Code generation for Intel x86 architecture</td></tr> | 
| Reid Spencer | 341d714 | 2004-10-31 23:00:25 +0000 | [diff] [blame] | 143 |  | 
| Reid Spencer | 0a4e8b3 | 2004-11-01 09:22:49 +0000 | [diff] [blame] | 144 | <tr><th colspan="3">Runtime Libraries</th></tr> | 
| Reid Spencer | 4148266 | 2004-10-31 23:24:31 +0000 | [diff] [blame] | 145 | <tr><td>LLVMInterpreter</td><td><tt>.o</tt></td> | 
| Gabor Greif | 04367bf | 2007-07-06 22:07:22 +0000 | [diff] [blame] | 146 | <td>Bitcode Interpreter</td></tr> | 
| Reid Spencer | 4148266 | 2004-10-31 23:24:31 +0000 | [diff] [blame] | 147 | <tr><td>LLVMJIT</td><td><tt>.o</tt></td> | 
| Gabor Greif | 04367bf | 2007-07-06 22:07:22 +0000 | [diff] [blame] | 148 | <td>Bitcode JIT Compiler</td></tr> | 
| Reid Spencer | 4148266 | 2004-10-31 23:24:31 +0000 | [diff] [blame] | 149 | <tr><td>LLVMExecutionEngine</td><td><tt>.o</tt></td> | 
|  | 150 | <td>Virtual machine engine</td></tr> | 
| Chris Lattner | 6175735 | 2004-02-27 06:28:34 +0000 | [diff] [blame] | 151 | </table> | 
|  | 152 | </div> | 
| Reid Spencer | 341d714 | 2004-10-31 23:00:25 +0000 | [diff] [blame] | 153 |  | 
| Chris Lattner | 6175735 | 2004-02-27 06:28:34 +0000 | [diff] [blame] | 154 | <!-- ======================================================================= --> | 
| Reid Spencer | e131ec9 | 2006-08-01 07:32:01 +0000 | [diff] [blame] | 155 | <div class="doc_section"><a name="dependencies"></a>Using llvm-config</div> | 
| Reid Spencer | e0f33ae | 2004-12-30 23:12:04 +0000 | [diff] [blame] | 156 | <div class="doc_text"> | 
| Reid Spencer | 704e81f | 2006-08-01 16:23:54 +0000 | [diff] [blame] | 157 | <p>The <tt>llvm-config</tt> tool is a perl script that produces on its output | 
| Reid Spencer | e131ec9 | 2006-08-01 07:32:01 +0000 | [diff] [blame] | 158 | various kinds of information. For example, the source or object directories | 
|  | 159 | used to build LLVM can be accessed by passing options to <tt>llvm-config</tt>. | 
|  | 160 | For complete details on this tool, please see the | 
|  | 161 | <a href="CommandGuide/html/llvm-config.html">manual page</a>.</p> | 
|  | 162 | <p>To understand the relationships between libraries, the <tt>llvm-config</tt> | 
|  | 163 | can be very useful. If all you know is that you want certain libraries to | 
|  | 164 | be available, you can generate the complete set of libraries to link with | 
|  | 165 | using one of four options, as below:</p> | 
|  | 166 | <ol> | 
|  | 167 | <li><tt>--ldflags</tt>. This generates the command line options necessary to | 
|  | 168 | be passed to the <tt>ld</tt> tool in order to link with LLVM. Most notably, | 
|  | 169 | the <tt>-L</tt> option is provided to specify a library search directory | 
| Reid Spencer | 704e81f | 2006-08-01 16:23:54 +0000 | [diff] [blame] | 170 | that contains the LLVM libraries.</li> | 
| Reid Spencer | e131ec9 | 2006-08-01 07:32:01 +0000 | [diff] [blame] | 171 | <li><tt>--libs</tt>. This generates command line options suitable for | 
|  | 172 | use with a gcc-style linker. That is, libraries are given with a -l option | 
|  | 173 | and object files are given with a full path.</li> | 
|  | 174 | <li><tt>--libnames</tt>. This generates a list of just the library file | 
|  | 175 | names. If you know the directory in which these files reside (see --ldflags) | 
|  | 176 | then you can find the libraries there.</li> | 
| Reid Spencer | 704e81f | 2006-08-01 16:23:54 +0000 | [diff] [blame] | 177 | <li><tt>--libfiles</tt>. This generates the full path names of the | 
|  | 178 | LLVM library files.</li> | 
| Reid Spencer | e131ec9 | 2006-08-01 07:32:01 +0000 | [diff] [blame] | 179 | </ol> | 
|  | 180 | <p>If you wish to delve further into how <tt>llvm-config</tt> generates the | 
|  | 181 | correct order (based on library dependencies), please see the tool named | 
|  | 182 | <tt>GenLibDeps.pl</tt> in the <tt>utils</tt> source directory of LLVM.</p> | 
|  | 183 |  | 
| Reid Spencer | e0f33ae | 2004-12-30 23:12:04 +0000 | [diff] [blame] | 184 | <!-- =======NOTE: =========================================================--> | 
| Reid Spencer | 43ff900 | 2005-01-03 05:46:46 +0000 | [diff] [blame] | 185 | <!-- === The following graphs and <dl> list are generated automatically ===--> | 
|  | 186 | <!-- === by the util named GenLibDeps.pl in the llvm/utils directory.   ===--> | 
|  | 187 | <!-- === This should be updated whenever new libraries are added,       ===--> | 
|  | 188 | <!-- === removed, or changed                                            ===--> | 
| Reid Spencer | e0f33ae | 2004-12-30 23:12:04 +0000 | [diff] [blame] | 189 | <!-- =======NOTE: =========================================================--> | 
| Reid Spencer | 43ff900 | 2005-01-03 05:46:46 +0000 | [diff] [blame] | 190 | <h2>Dependency Relationships Of Libraries</h2> | 
|  | 191 | <p>This graph shows the dependency of archive libraries on other archive | 
|  | 192 | libraries or objects. Where a library has both archive and object forms, only | 
|  | 193 | the archive form is shown.</p> | 
| NAKAMURA Takumi | 4d6deb0 | 2011-04-09 09:51:57 +0000 | [diff] [blame^] | 194 | <img src="img/libdeps.gif" alt="Library Dependencies"> | 
| Reid Spencer | 43ff900 | 2005-01-03 05:46:46 +0000 | [diff] [blame] | 195 | <h2>Dependency Relationships Of Object Files</h2> | 
|  | 196 | <p>This graph shows the dependency of object files on archive libraries or | 
|  | 197 | other objects. Where a library has both object and archive forms, only the | 
|  | 198 | dependency to the archive form is shown.</p> | 
| NAKAMURA Takumi | 4d6deb0 | 2011-04-09 09:51:57 +0000 | [diff] [blame^] | 199 | <img src="img/objdeps.gif" alt="Object File Dependencies"> | 
| Reid Spencer | 43ff900 | 2005-01-03 05:46:46 +0000 | [diff] [blame] | 200 | <p>The following list shows the dependency relationships between libraries in | 
|  | 201 | textual form. The information is the same as shown on the graphs but arranged | 
|  | 202 | alphabetically.</p> | 
| Reid Spencer | e0f33ae | 2004-12-30 23:12:04 +0000 | [diff] [blame] | 203 | <dl> | 
| Dan Gohman | 364a39f | 2008-10-14 17:00:38 +0000 | [diff] [blame] | 204 | <dt><b>libLLVMAnalysis.a</b></dt><dd><ul> | 
| Reid Spencer | e131ec9 | 2006-08-01 07:32:01 +0000 | [diff] [blame] | 205 | <li>libLLVMCore.a</li> | 
| Reid Spencer | e0f33ae | 2004-12-30 23:12:04 +0000 | [diff] [blame] | 206 | <li>libLLVMSupport.a</li> | 
|  | 207 | <li>libLLVMSystem.a</li> | 
| Reid Spencer | e131ec9 | 2006-08-01 07:32:01 +0000 | [diff] [blame] | 208 | <li>libLLVMTarget.a</li> | 
|  | 209 | </ul></dd> | 
| Dan Gohman | 364a39f | 2008-10-14 17:00:38 +0000 | [diff] [blame] | 210 | <dt><b>libLLVMArchive.a</b></dt><dd><ul> | 
| Reid Spencer | e131ec9 | 2006-08-01 07:32:01 +0000 | [diff] [blame] | 211 | <li>libLLVMBCReader.a</li> | 
|  | 212 | <li>libLLVMCore.a</li> | 
|  | 213 | <li>libLLVMSupport.a</li> | 
|  | 214 | <li>libLLVMSystem.a</li> | 
|  | 215 | </ul></dd> | 
| Dan Gohman | 364a39f | 2008-10-14 17:00:38 +0000 | [diff] [blame] | 216 | <dt><b>libLLVMAsmParser.a</b></dt><dd><ul> | 
| Reid Spencer | e131ec9 | 2006-08-01 07:32:01 +0000 | [diff] [blame] | 217 | <li>libLLVMCore.a</li> | 
| Reid Spencer | e131ec9 | 2006-08-01 07:32:01 +0000 | [diff] [blame] | 218 | <li>libLLVMSystem.a</li> | 
|  | 219 | </ul></dd> | 
| Dan Gohman | 364a39f | 2008-10-14 17:00:38 +0000 | [diff] [blame] | 220 | <dt><b>libLLVMBCReader.a</b></dt><dd><ul> | 
| Reid Spencer | e131ec9 | 2006-08-01 07:32:01 +0000 | [diff] [blame] | 221 | <li>libLLVMCore.a</li> | 
|  | 222 | <li>libLLVMSupport.a</li> | 
|  | 223 | <li>libLLVMSystem.a</li> | 
|  | 224 | </ul></dd> | 
| Dan Gohman | 364a39f | 2008-10-14 17:00:38 +0000 | [diff] [blame] | 225 | <dt><b>libLLVMBCWriter.a</b></dt><dd><ul> | 
| Reid Spencer | e131ec9 | 2006-08-01 07:32:01 +0000 | [diff] [blame] | 226 | <li>libLLVMCore.a</li> | 
|  | 227 | <li>libLLVMSupport.a</li> | 
|  | 228 | <li>libLLVMSystem.a</li> | 
|  | 229 | </ul></dd> | 
| Dan Gohman | 364a39f | 2008-10-14 17:00:38 +0000 | [diff] [blame] | 230 | <dt><b>libLLVMCodeGen.a</b></dt><dd><ul> | 
| Reid Spencer | e131ec9 | 2006-08-01 07:32:01 +0000 | [diff] [blame] | 231 | <li>libLLVMAnalysis.a</li> | 
|  | 232 | <li>libLLVMCore.a</li> | 
| Reid Spencer | 006c687 | 2007-02-04 00:17:35 +0000 | [diff] [blame] | 233 | <li>libLLVMScalarOpts.a</li> | 
| Reid Spencer | e131ec9 | 2006-08-01 07:32:01 +0000 | [diff] [blame] | 234 | <li>libLLVMSupport.a</li> | 
|  | 235 | <li>libLLVMSystem.a</li> | 
|  | 236 | <li>libLLVMTarget.a</li> | 
| Reid Spencer | 006c687 | 2007-02-04 00:17:35 +0000 | [diff] [blame] | 237 | <li>libLLVMTransformUtils.a</li> | 
| Reid Spencer | e131ec9 | 2006-08-01 07:32:01 +0000 | [diff] [blame] | 238 | </ul></dd> | 
| Dan Gohman | 364a39f | 2008-10-14 17:00:38 +0000 | [diff] [blame] | 239 | <dt><b>libLLVMCore.a</b></dt><dd><ul> | 
| Reid Spencer | e131ec9 | 2006-08-01 07:32:01 +0000 | [diff] [blame] | 240 | <li>libLLVMSupport.a</li> | 
|  | 241 | <li>libLLVMSystem.a</li> | 
|  | 242 | </ul></dd> | 
| Dan Gohman | 364a39f | 2008-10-14 17:00:38 +0000 | [diff] [blame] | 243 | <dt><b>libLLVMDebugger.a</b></dt><dd><ul> | 
| Reid Spencer | e131ec9 | 2006-08-01 07:32:01 +0000 | [diff] [blame] | 244 | <li>libLLVMBCReader.a</li> | 
|  | 245 | <li>libLLVMCore.a</li> | 
|  | 246 | <li>libLLVMSupport.a</li> | 
|  | 247 | <li>libLLVMSystem.a</li> | 
| Reid Spencer | e0f33ae | 2004-12-30 23:12:04 +0000 | [diff] [blame] | 248 | </ul></dd> | 
| Dan Gohman | 364a39f | 2008-10-14 17:00:38 +0000 | [diff] [blame] | 249 | <dt><b>libLLVMInstrumentation.a</b></dt><dd><ul> | 
| Reid Spencer | e131ec9 | 2006-08-01 07:32:01 +0000 | [diff] [blame] | 250 | <li>libLLVMCore.a</li> | 
| Reid Spencer | d42037a | 2006-05-13 02:22:01 +0000 | [diff] [blame] | 251 | <li>libLLVMScalarOpts.a</li> | 
| Reid Spencer | e0f33ae | 2004-12-30 23:12:04 +0000 | [diff] [blame] | 252 | <li>libLLVMSupport.a</li> | 
|  | 253 | <li>libLLVMTransformUtils.a</li> | 
| Reid Spencer | e0f33ae | 2004-12-30 23:12:04 +0000 | [diff] [blame] | 254 | </ul></dd> | 
| Dan Gohman | 364a39f | 2008-10-14 17:00:38 +0000 | [diff] [blame] | 255 | <dt><b>libLLVMLinker.a</b></dt><dd><ul> | 
| Reid Spencer | e0f33ae | 2004-12-30 23:12:04 +0000 | [diff] [blame] | 256 | <li>libLLVMArchive.a</li> | 
| Reid Spencer | e131ec9 | 2006-08-01 07:32:01 +0000 | [diff] [blame] | 257 | <li>libLLVMBCReader.a</li> | 
|  | 258 | <li>libLLVMCore.a</li> | 
| Reid Spencer | 006c687 | 2007-02-04 00:17:35 +0000 | [diff] [blame] | 259 | <li>libLLVMSupport.a</li> | 
| Reid Spencer | e0f33ae | 2004-12-30 23:12:04 +0000 | [diff] [blame] | 260 | <li>libLLVMSystem.a</li> | 
| Reid Spencer | e0f33ae | 2004-12-30 23:12:04 +0000 | [diff] [blame] | 261 | </ul></dd> | 
| Dan Gohman | 364a39f | 2008-10-14 17:00:38 +0000 | [diff] [blame] | 262 | <dt><b>libLLVMScalarOpts.a</b></dt><dd><ul> | 
| Reid Spencer | e0f33ae | 2004-12-30 23:12:04 +0000 | [diff] [blame] | 263 | <li>libLLVMAnalysis.a</li> | 
| Reid Spencer | e131ec9 | 2006-08-01 07:32:01 +0000 | [diff] [blame] | 264 | <li>libLLVMCore.a</li> | 
| Reid Spencer | e0f33ae | 2004-12-30 23:12:04 +0000 | [diff] [blame] | 265 | <li>libLLVMSupport.a</li> | 
| Reid Spencer | e131ec9 | 2006-08-01 07:32:01 +0000 | [diff] [blame] | 266 | <li>libLLVMSystem.a</li> | 
| Reid Spencer | e0f33ae | 2004-12-30 23:12:04 +0000 | [diff] [blame] | 267 | <li>libLLVMTarget.a</li> | 
|  | 268 | <li>libLLVMTransformUtils.a</li> | 
| Reid Spencer | e131ec9 | 2006-08-01 07:32:01 +0000 | [diff] [blame] | 269 | </ul></dd> | 
| Dan Gohman | 364a39f | 2008-10-14 17:00:38 +0000 | [diff] [blame] | 270 | <dt><b>libLLVMSelectionDAG.a</b></dt><dd><ul> | 
| Reid Spencer | 006c687 | 2007-02-04 00:17:35 +0000 | [diff] [blame] | 271 | <li>libLLVMAnalysis.a</li> | 
| Reid Spencer | e131ec9 | 2006-08-01 07:32:01 +0000 | [diff] [blame] | 272 | <li>libLLVMCodeGen.a</li> | 
|  | 273 | <li>libLLVMCore.a</li> | 
|  | 274 | <li>libLLVMSupport.a</li> | 
|  | 275 | <li>libLLVMSystem.a</li> | 
|  | 276 | <li>libLLVMTarget.a</li> | 
|  | 277 | <li>libLLVMTransformUtils.a</li> | 
| Reid Spencer | e0f33ae | 2004-12-30 23:12:04 +0000 | [diff] [blame] | 278 | </ul></dd> | 
| Dan Gohman | 364a39f | 2008-10-14 17:00:38 +0000 | [diff] [blame] | 279 | <dt><b>libLLVMSupport.a</b></dt><dd><ul> | 
| Reid Spencer | e0f33ae | 2004-12-30 23:12:04 +0000 | [diff] [blame] | 280 | <li>libLLVMSystem.a</li> | 
| Reid Spencer | e131ec9 | 2006-08-01 07:32:01 +0000 | [diff] [blame] | 281 | <li>libLLVMbzip2.a</li> | 
| Reid Spencer | e0f33ae | 2004-12-30 23:12:04 +0000 | [diff] [blame] | 282 | </ul></dd> | 
| NAKAMURA Takumi | 4d6deb0 | 2011-04-09 09:51:57 +0000 | [diff] [blame^] | 283 | <dt><b>libLLVMSystem.a</b></dt><dd> | 
|  | 284 | </dd> | 
| Dan Gohman | 364a39f | 2008-10-14 17:00:38 +0000 | [diff] [blame] | 285 | <dt><b>libLLVMTarget.a</b></dt><dd><ul> | 
| Reid Spencer | e131ec9 | 2006-08-01 07:32:01 +0000 | [diff] [blame] | 286 | <li>libLLVMCore.a</li> | 
| Reid Spencer | e0f33ae | 2004-12-30 23:12:04 +0000 | [diff] [blame] | 287 | <li>libLLVMSupport.a</li> | 
| Reid Spencer | e131ec9 | 2006-08-01 07:32:01 +0000 | [diff] [blame] | 288 | <li>libLLVMSystem.a</li> | 
| Reid Spencer | e0f33ae | 2004-12-30 23:12:04 +0000 | [diff] [blame] | 289 | </ul></dd> | 
| Dan Gohman | 364a39f | 2008-10-14 17:00:38 +0000 | [diff] [blame] | 290 | <dt><b>libLLVMTransformUtils.a</b></dt><dd><ul> | 
| Reid Spencer | e0f33ae | 2004-12-30 23:12:04 +0000 | [diff] [blame] | 291 | <li>libLLVMAnalysis.a</li> | 
| Reid Spencer | e131ec9 | 2006-08-01 07:32:01 +0000 | [diff] [blame] | 292 | <li>libLLVMCore.a</li> | 
| Reid Spencer | e0f33ae | 2004-12-30 23:12:04 +0000 | [diff] [blame] | 293 | <li>libLLVMSupport.a</li> | 
| Reid Spencer | e131ec9 | 2006-08-01 07:32:01 +0000 | [diff] [blame] | 294 | <li>libLLVMSystem.a</li> | 
| Reid Spencer | 006c687 | 2007-02-04 00:17:35 +0000 | [diff] [blame] | 295 | <li>libLLVMTarget.a</li> | 
| Reid Spencer | e131ec9 | 2006-08-01 07:32:01 +0000 | [diff] [blame] | 296 | <li>libLLVMipa.a</li> | 
| Reid Spencer | e0f33ae | 2004-12-30 23:12:04 +0000 | [diff] [blame] | 297 | </ul></dd> | 
| NAKAMURA Takumi | 4d6deb0 | 2011-04-09 09:51:57 +0000 | [diff] [blame^] | 298 | <dt><b>libLLVMbzip2.a</b></dt><dd> | 
|  | 299 | </dd> | 
| Dan Gohman | 364a39f | 2008-10-14 17:00:38 +0000 | [diff] [blame] | 300 | <dt><b>libLLVMipa.a</b></dt><dd><ul> | 
| Reid Spencer | e0f33ae | 2004-12-30 23:12:04 +0000 | [diff] [blame] | 301 | <li>libLLVMAnalysis.a</li> | 
| Reid Spencer | e131ec9 | 2006-08-01 07:32:01 +0000 | [diff] [blame] | 302 | <li>libLLVMCore.a</li> | 
| Reid Spencer | e0f33ae | 2004-12-30 23:12:04 +0000 | [diff] [blame] | 303 | <li>libLLVMSupport.a</li> | 
| Reid Spencer | e131ec9 | 2006-08-01 07:32:01 +0000 | [diff] [blame] | 304 | <li>libLLVMSystem.a</li> | 
| Reid Spencer | e0f33ae | 2004-12-30 23:12:04 +0000 | [diff] [blame] | 305 | </ul></dd> | 
| Dan Gohman | 364a39f | 2008-10-14 17:00:38 +0000 | [diff] [blame] | 306 | <dt><b>libLLVMipo.a</b></dt><dd><ul> | 
| Reid Spencer | e0f33ae | 2004-12-30 23:12:04 +0000 | [diff] [blame] | 307 | <li>libLLVMAnalysis.a</li> | 
| Reid Spencer | e131ec9 | 2006-08-01 07:32:01 +0000 | [diff] [blame] | 308 | <li>libLLVMCore.a</li> | 
| Reid Spencer | e0f33ae | 2004-12-30 23:12:04 +0000 | [diff] [blame] | 309 | <li>libLLVMSupport.a</li> | 
|  | 310 | <li>libLLVMSystem.a</li> | 
| Reid Spencer | e131ec9 | 2006-08-01 07:32:01 +0000 | [diff] [blame] | 311 | <li>libLLVMTarget.a</li> | 
|  | 312 | <li>libLLVMTransformUtils.a</li> | 
|  | 313 | <li>libLLVMipa.a</li> | 
| Reid Spencer | e0f33ae | 2004-12-30 23:12:04 +0000 | [diff] [blame] | 314 | </ul></dd> | 
| Dan Gohman | 364a39f | 2008-10-14 17:00:38 +0000 | [diff] [blame] | 315 | <dt><b>libLLVMlto.a</b></dt><dd><ul> | 
| Reid Spencer | 006c687 | 2007-02-04 00:17:35 +0000 | [diff] [blame] | 316 | <li>libLLVMAnalysis.a</li> | 
|  | 317 | <li>libLLVMBCReader.a</li> | 
|  | 318 | <li>libLLVMBCWriter.a</li> | 
|  | 319 | <li>libLLVMCore.a</li> | 
|  | 320 | <li>libLLVMLinker.a</li> | 
|  | 321 | <li>libLLVMScalarOpts.a</li> | 
|  | 322 | <li>libLLVMSupport.a</li> | 
|  | 323 | <li>libLLVMSystem.a</li> | 
|  | 324 | <li>libLLVMTarget.a</li> | 
|  | 325 | <li>libLLVMipa.a</li> | 
|  | 326 | <li>libLLVMipo.a</li> | 
|  | 327 | </ul></dd> | 
| Dan Gohman | 364a39f | 2008-10-14 17:00:38 +0000 | [diff] [blame] | 328 | <dt><b>LLVMARM.o</b></dt><dd><ul> | 
| Reid Spencer | e131ec9 | 2006-08-01 07:32:01 +0000 | [diff] [blame] | 329 | <li>libLLVMCodeGen.a</li> | 
|  | 330 | <li>libLLVMCore.a</li> | 
| Reid Spencer | e131ec9 | 2006-08-01 07:32:01 +0000 | [diff] [blame] | 331 | <li>libLLVMSelectionDAG.a</li> | 
| Reid Spencer | e0f33ae | 2004-12-30 23:12:04 +0000 | [diff] [blame] | 332 | <li>libLLVMSupport.a</li> | 
| Reid Spencer | e131ec9 | 2006-08-01 07:32:01 +0000 | [diff] [blame] | 333 | <li>libLLVMSystem.a</li> | 
|  | 334 | <li>libLLVMTarget.a</li> | 
|  | 335 | </ul></dd> | 
| Dan Gohman | 364a39f | 2008-10-14 17:00:38 +0000 | [diff] [blame] | 336 | <dt><b>LLVMAlpha.o</b></dt><dd><ul> | 
| Reid Spencer | e131ec9 | 2006-08-01 07:32:01 +0000 | [diff] [blame] | 337 | <li>libLLVMCodeGen.a</li> | 
|  | 338 | <li>libLLVMCore.a</li> | 
| Reid Spencer | e131ec9 | 2006-08-01 07:32:01 +0000 | [diff] [blame] | 339 | <li>libLLVMSelectionDAG.a</li> | 
|  | 340 | <li>libLLVMSupport.a</li> | 
|  | 341 | <li>libLLVMSystem.a</li> | 
|  | 342 | <li>libLLVMTarget.a</li> | 
| Reid Spencer | e0f33ae | 2004-12-30 23:12:04 +0000 | [diff] [blame] | 343 | </ul></dd> | 
| Dan Gohman | 364a39f | 2008-10-14 17:00:38 +0000 | [diff] [blame] | 344 | <dt><b>LLVMCBackend.o</b></dt><dd><ul> | 
| Reid Spencer | e0f33ae | 2004-12-30 23:12:04 +0000 | [diff] [blame] | 345 | <li>libLLVMAnalysis.a</li> | 
| Reid Spencer | e131ec9 | 2006-08-01 07:32:01 +0000 | [diff] [blame] | 346 | <li>libLLVMCodeGen.a</li> | 
|  | 347 | <li>libLLVMCore.a</li> | 
| Reid Spencer | e0f33ae | 2004-12-30 23:12:04 +0000 | [diff] [blame] | 348 | <li>libLLVMScalarOpts.a</li> | 
|  | 349 | <li>libLLVMSupport.a</li> | 
| Reid Spencer | e131ec9 | 2006-08-01 07:32:01 +0000 | [diff] [blame] | 350 | <li>libLLVMSystem.a</li> | 
| Reid Spencer | e0f33ae | 2004-12-30 23:12:04 +0000 | [diff] [blame] | 351 | <li>libLLVMTarget.a</li> | 
| Reid Spencer | 006c687 | 2007-02-04 00:17:35 +0000 | [diff] [blame] | 352 | <li>libLLVMTransformUtils.a</li> | 
| Reid Spencer | e131ec9 | 2006-08-01 07:32:01 +0000 | [diff] [blame] | 353 | <li>libLLVMipa.a</li> | 
| Reid Spencer | e0f33ae | 2004-12-30 23:12:04 +0000 | [diff] [blame] | 354 | </ul></dd> | 
| Dan Gohman | 364a39f | 2008-10-14 17:00:38 +0000 | [diff] [blame] | 355 | <dt><b>LLVMExecutionEngine.o</b></dt><dd><ul> | 
| Reid Spencer | e131ec9 | 2006-08-01 07:32:01 +0000 | [diff] [blame] | 356 | <li>libLLVMCore.a</li> | 
| Reid Spencer | e0f33ae | 2004-12-30 23:12:04 +0000 | [diff] [blame] | 357 | <li>libLLVMSupport.a</li> | 
|  | 358 | <li>libLLVMSystem.a</li> | 
|  | 359 | <li>libLLVMTarget.a</li> | 
| Reid Spencer | e0f33ae | 2004-12-30 23:12:04 +0000 | [diff] [blame] | 360 | </ul></dd> | 
| Dan Gohman | 364a39f | 2008-10-14 17:00:38 +0000 | [diff] [blame] | 361 | <dt><b>LLVMInterpreter.o</b></dt><dd><ul> | 
| Reid Spencer | e131ec9 | 2006-08-01 07:32:01 +0000 | [diff] [blame] | 362 | <li>LLVMExecutionEngine.o</li> | 
| Reid Spencer | 006c687 | 2007-02-04 00:17:35 +0000 | [diff] [blame] | 363 | <li>libLLVMCodeGen.a</li> | 
| Reid Spencer | e131ec9 | 2006-08-01 07:32:01 +0000 | [diff] [blame] | 364 | <li>libLLVMCore.a</li> | 
| Reid Spencer | e0f33ae | 2004-12-30 23:12:04 +0000 | [diff] [blame] | 365 | <li>libLLVMSupport.a</li> | 
|  | 366 | <li>libLLVMSystem.a</li> | 
|  | 367 | <li>libLLVMTarget.a</li> | 
| Reid Spencer | e0f33ae | 2004-12-30 23:12:04 +0000 | [diff] [blame] | 368 | </ul></dd> | 
| Dan Gohman | 364a39f | 2008-10-14 17:00:38 +0000 | [diff] [blame] | 369 | <dt><b>LLVMJIT.o</b></dt><dd><ul> | 
| Reid Spencer | e131ec9 | 2006-08-01 07:32:01 +0000 | [diff] [blame] | 370 | <li>LLVMExecutionEngine.o</li> | 
| Reid Spencer | e131ec9 | 2006-08-01 07:32:01 +0000 | [diff] [blame] | 371 | <li>libLLVMCore.a</li> | 
| Reid Spencer | e0f33ae | 2004-12-30 23:12:04 +0000 | [diff] [blame] | 372 | <li>libLLVMSupport.a</li> | 
|  | 373 | <li>libLLVMSystem.a</li> | 
|  | 374 | <li>libLLVMTarget.a</li> | 
| Reid Spencer | e0f33ae | 2004-12-30 23:12:04 +0000 | [diff] [blame] | 375 | </ul></dd> | 
| Dan Gohman | 364a39f | 2008-10-14 17:00:38 +0000 | [diff] [blame] | 376 | <dt><b>LLVMPowerPC.o</b></dt><dd><ul> | 
| Reid Spencer | e131ec9 | 2006-08-01 07:32:01 +0000 | [diff] [blame] | 377 | <li>libLLVMCodeGen.a</li> | 
|  | 378 | <li>libLLVMCore.a</li> | 
| Reid Spencer | e131ec9 | 2006-08-01 07:32:01 +0000 | [diff] [blame] | 379 | <li>libLLVMSelectionDAG.a</li> | 
| Reid Spencer | d42037a | 2006-05-13 02:22:01 +0000 | [diff] [blame] | 380 | <li>libLLVMSupport.a</li> | 
|  | 381 | <li>libLLVMSystem.a</li> | 
| Reid Spencer | e0f33ae | 2004-12-30 23:12:04 +0000 | [diff] [blame] | 382 | <li>libLLVMTarget.a</li> | 
| Reid Spencer | e0f33ae | 2004-12-30 23:12:04 +0000 | [diff] [blame] | 383 | </ul></dd> | 
| Dan Gohman | 364a39f | 2008-10-14 17:00:38 +0000 | [diff] [blame] | 384 | <dt><b>LLVMSparc.o</b></dt><dd><ul> | 
| Reid Spencer | e131ec9 | 2006-08-01 07:32:01 +0000 | [diff] [blame] | 385 | <li>libLLVMCodeGen.a</li> | 
|  | 386 | <li>libLLVMCore.a</li> | 
| Reid Spencer | e131ec9 | 2006-08-01 07:32:01 +0000 | [diff] [blame] | 387 | <li>libLLVMSelectionDAG.a</li> | 
| Reid Spencer | e0f33ae | 2004-12-30 23:12:04 +0000 | [diff] [blame] | 388 | <li>libLLVMSupport.a</li> | 
| Reid Spencer | e131ec9 | 2006-08-01 07:32:01 +0000 | [diff] [blame] | 389 | <li>libLLVMSystem.a</li> | 
| Reid Spencer | e0f33ae | 2004-12-30 23:12:04 +0000 | [diff] [blame] | 390 | <li>libLLVMTarget.a</li> | 
| Reid Spencer | e0f33ae | 2004-12-30 23:12:04 +0000 | [diff] [blame] | 391 | </ul></dd> | 
| Dan Gohman | 364a39f | 2008-10-14 17:00:38 +0000 | [diff] [blame] | 392 | <dt><b>LLVMX86.o</b></dt><dd><ul> | 
| Reid Spencer | e131ec9 | 2006-08-01 07:32:01 +0000 | [diff] [blame] | 393 | <li>libLLVMCodeGen.a</li> | 
|  | 394 | <li>libLLVMCore.a</li> | 
| Reid Spencer | e131ec9 | 2006-08-01 07:32:01 +0000 | [diff] [blame] | 395 | <li>libLLVMSelectionDAG.a</li> | 
| Reid Spencer | e0f33ae | 2004-12-30 23:12:04 +0000 | [diff] [blame] | 396 | <li>libLLVMSupport.a</li> | 
| Reid Spencer | e131ec9 | 2006-08-01 07:32:01 +0000 | [diff] [blame] | 397 | <li>libLLVMSystem.a</li> | 
| Reid Spencer | e0f33ae | 2004-12-30 23:12:04 +0000 | [diff] [blame] | 398 | <li>libLLVMTarget.a</li> | 
| Reid Spencer | e0f33ae | 2004-12-30 23:12:04 +0000 | [diff] [blame] | 399 | </ul></dd> | 
|  | 400 | </dl> | 
|  | 401 | </div> | 
|  | 402 |  | 
|  | 403 | <!-- ======================================================================= --> | 
| Chris Lattner | 6175735 | 2004-02-27 06:28:34 +0000 | [diff] [blame] | 404 | <div class="doc_section"><a name="rot">Linkage Rules Of Thumb</a></div> | 
|  | 405 | <div class="doc_text"> | 
|  | 406 | <p>This section contains various "rules of thumb" about what files you | 
|  | 407 | should link into your programs.</p> | 
|  | 408 | </div> | 
|  | 409 | <!-- ======================================================================= --> | 
| Misha Brukman | 6fb5166 | 2004-11-08 00:22:22 +0000 | [diff] [blame] | 410 | <div class="doc_subsection"><a name="always">Always Link LLVMCore, LLVMSupport, | 
|  | 411 | and LLVMSystem</a></div> | 
| Chris Lattner | 6175735 | 2004-02-27 06:28:34 +0000 | [diff] [blame] | 412 | <div class="doc_text"> | 
| Reid Spencer | 52afa7e | 2004-11-08 00:26:32 +0000 | [diff] [blame] | 413 | <p>No matter what you do with LLVM, the last three entries in the value of | 
|  | 414 | your LLVMLIBS make variable should always be: | 
|  | 415 | <tt>LLVMCore LLVMSupport.a LLVMSystem.a</tt>. There are no <tt>LLVM</tt> | 
|  | 416 | programs that don't depend on these three.</p> | 
| Chris Lattner | 6175735 | 2004-02-27 06:28:34 +0000 | [diff] [blame] | 417 | </div> | 
|  | 418 | <!-- ======================================================================= --> | 
| Reid Spencer | 341d714 | 2004-10-31 23:00:25 +0000 | [diff] [blame] | 419 | <div class="doc_subsection"><a name="onlyone">Never link both archive and | 
|  | 420 | re-linked library</a></div> | 
| Chris Lattner | 6175735 | 2004-02-27 06:28:34 +0000 | [diff] [blame] | 421 | <div class="doc_text"> | 
| Reid Spencer | 341d714 | 2004-10-31 23:00:25 +0000 | [diff] [blame] | 422 | <p>There is never any point to linking both the re-linked (<tt>.o</tt>) and | 
|  | 423 | the archive (<tt>.a</tt>) versions of a library. Since the re-linked version | 
|  | 424 | includes the entire library, the archive version will not resolve any symbols. | 
| Reid Spencer | 347e288 | 2004-11-08 00:24:43 +0000 | [diff] [blame] | 425 | You could even end up with link error if you place the archive version before | 
| Reid Spencer | 341d714 | 2004-10-31 23:00:25 +0000 | [diff] [blame] | 426 | the re-linked version on the linker's command line.</p> | 
| Chris Lattner | 6175735 | 2004-02-27 06:28:34 +0000 | [diff] [blame] | 427 | </div> | 
|  | 428 | <!-- ======================================================================= --> | 
|  | 429 | <hr> | 
|  | 430 | <div class="doc_footer"> | 
| Reid Spencer | bd72241 | 2004-11-01 09:19:53 +0000 | [diff] [blame] | 431 | <address> | 
|  | 432 | <a href="http://jigsaw.w3.org/css-validator/check/referer"><img | 
| NAKAMURA Takumi | 4d6deb0 | 2011-04-09 09:51:57 +0000 | [diff] [blame^] | 433 | src="http://jigsaw.w3.org/css-validator/images/vcss-blue" alt="Valid CSS"></a> | 
| Reid Spencer | bd72241 | 2004-11-01 09:19:53 +0000 | [diff] [blame] | 434 | <a href="http://validator.w3.org/check/referer"><img | 
| Misha Brukman | f00ddb0 | 2008-12-11 18:23:24 +0000 | [diff] [blame] | 435 | src="http://www.w3.org/Icons/valid-html401-blue" alt="Valid HTML 4.01"></a> | 
| Reid Spencer | bd72241 | 2004-11-01 09:19:53 +0000 | [diff] [blame] | 436 | <a href="mailto:rspencer@x10sys.com">Reid Spencer</a> | 
|  | 437 | </address> | 
| NAKAMURA Takumi | b9a3363 | 2011-04-09 02:13:37 +0000 | [diff] [blame] | 438 | <a href="http://llvm.org/">The LLVM Compiler Infrastructure</a> | 
| Chris Lattner | 6175735 | 2004-02-27 06:28:34 +0000 | [diff] [blame] | 439 | <br>Last modified: $Date$ </div> | 
|  | 440 | </body> | 
|  | 441 | </html> | 
|  | 442 | <!-- vim: sw=2 ts=2 ai | 
|  | 443 | --> |