blob: 6486bd77843d24f6b64e9f352bcd97c33dff76c3 [file] [log] [blame]
Guochun Shif4688a82002-07-17 23:05:56 +00001<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2<html>
John Criswell85ed3612003-06-12 19:34:44 +00003 <head>
4 <title>Getting Started with LLVM System</title>
5 </head>
6
7 <body bgcolor=white>
8 <center><h1>Getting Started with the LLVM System<br><font size=3>By: <a
9 href="mailto:gshi1@uiuc.edu">Guochun Shi</a>,
John Criswellcb27f1e2003-07-01 21:55:57 +000010 <a href="mailto:sabre@nondot.org">Chris Lattner</a>,
Misha Brukmanc103adf2003-08-11 18:45:46 +000011 <a href="mailto:criswell@uiuc.edu">John Criswell</a>,
12 <a href="http://misha.brukman.net">Misha Brukman</a>, and
John Criswell85ed3612003-06-12 19:34:44 +000013 <a href="http://www.cs.uiuc.edu/~vadve">Vikram Adve</a>
14 </font></h1></center>
15
16 <!--=====================================================================-->
17 <h2><a name="Contents">Contents</a></h2>
18 <!--=====================================================================-->
19
20 <ul>
21 <li><a href="#overview">Overview</a>
John Criswellce760f62003-07-03 16:01:38 +000022 <ol>
John Criswell7a73b802003-06-30 21:59:07 +000023 <li><a href="#requirements">Requirements</a>
24 <ol>
25 <li><a href="#hardware">Hardware</a>
26 <li><a href="#software">Software</a>
27 </ol>
John Criswellce760f62003-07-03 16:01:38 +000028 </ol>
29 <li><a href="#starting">Getting started with LLVM</a>
30 <ol>
John Criswell0b459202003-07-08 20:35:59 +000031 <li><a href="#quickstart">Getting Started Quickly (A Summary)</a>
John Criswell85ed3612003-06-12 19:34:44 +000032 <li><a href="#terminology">Terminology and Notation</tt></a>
John Criswell0b459202003-07-08 20:35:59 +000033 <li><a href="#environment">Setting Up Your Environment</a>
John Criswell312a68c2003-07-07 19:27:35 +000034 <li><a href="#unpack">Unpacking the LLVM Archives</a>
John Criswellce760f62003-07-03 16:01:38 +000035 <li><a href="#checkout">Checkout LLVM from CVS</a>
John Criswell0b459202003-07-08 20:35:59 +000036 <li><a href="#installcf">Install the C Front End</a>
37 <li><a href="#config">Local LLVM Configuration</tt></a>
John Criswellce760f62003-07-03 16:01:38 +000038 <li><a href="#compile">Compiling the LLVM Suite Source Code</a>
John Criswell0b459202003-07-08 20:35:59 +000039 <li><a href="#objfiles">The Location of LLVM Object Files</tt></a>
John Criswell85ed3612003-06-12 19:34:44 +000040 </ol>
41 <li><a href="#layout">Program layout</a>
Misha Brukmanc103adf2003-08-11 18:45:46 +000042 <ol>
43 <li><a href="#cvsdir"><tt>CVS</tt> directories</a>
44 <li><a href="#include"><tt>llvm/include</tt></a>
45 <li><a href="#lib"><tt>llvm/lib</tt></a>
46 <li><a href="#test"><tt>llvm/test</tt></a>
47 <li><a href="#tools"><tt>llvm/tools</tt></a>
48 <li><a href="#utils"><tt>llvm/utils</tt></a>
49 </ol>
John Criswell0b459202003-07-08 20:35:59 +000050 <li><a href="#cfront">Compiling the LLVM C Front End</a>
51 <li><a href="#tutorial">An Example Using the LLVM Tool Chain</a>
52 <li><a href="#problems">Common Problems</a>
John Criswell85ed3612003-06-12 19:34:44 +000053 <li><a href="#links">Links</a>
54 </ul>
55
56
57 <!--=====================================================================-->
58 <center>
59 <h2><a name="overview"><b>Overview</b></a></h2>
60 </center>
61 <!--=====================================================================-->
62
John Criswellce760f62003-07-03 16:01:38 +000063 Welcome to LLVM! In order to get started, you first need to know some
64 basic information.
65
66 <p>
67 First, LLVM comes in two pieces. The first piece is the LLVM suite. This
68 contains all of the tools, libraries, and header files needed to use the
69 low level virtual machine. It also contains a test suite that can be used
John Criswell0b459202003-07-08 20:35:59 +000070 to test the LLVM tools and the C front end.
John Criswellce760f62003-07-03 16:01:38 +000071 <p>
John Criswell0b459202003-07-08 20:35:59 +000072 The second piece is the C front end. This component provides a version
John Criswellce760f62003-07-03 16:01:38 +000073 of GCC that compiles C code into LLVM bytecode. Currently, the C front end
74 is a modified version of GCC 3.4 (we track the GCC 3.4 development).
75 Once compiled into LLVM bytecode, a program can be manipulated with the
John Criswell0b459202003-07-08 20:35:59 +000076 LLVM tools from the LLVM suite.
John Criswellce760f62003-07-03 16:01:38 +000077
78 <!--=====================================================================-->
79 <h3><a name="requirements"><b>Requirements</b></a></h3>
80 <!--=====================================================================-->
81
82 Before you begin to use the LLVM system, review the requirements given
83 below. This may save you some trouble by knowing ahead of time what
84 hardware and software you will need.
85
86 <!--=====================================================================-->
87 <h4><a name="hardware"><b>Hardware</b></a></h4>
88 <!--=====================================================================-->
89 LLVM is known to work on the following platforms:
90 <ul>
91 <li> Linux on x86
92 <ul>
John Criswell0b459202003-07-08 20:35:59 +000093 <li> Approximately 760 MB of Free Disk Space
John Criswellce760f62003-07-03 16:01:38 +000094 <ul>
95 <li>Source code: 30 MB
96 <li>Object code: 670 MB
John Criswell0b459202003-07-08 20:35:59 +000097 <li>C front end: 60 MB
John Criswellce760f62003-07-03 16:01:38 +000098 </ul>
99 </ul>
John Criswell0b459202003-07-08 20:35:59 +0000100
101 <p>
102
John Criswellce760f62003-07-03 16:01:38 +0000103 <li> Solaris on SparcV9 (Ultrasparc)
104 <ul>
John Criswell0b459202003-07-08 20:35:59 +0000105 <li> Approximately 1.24 GB of Free Disk Space
John Criswellce760f62003-07-03 16:01:38 +0000106 <ul>
107 <li>Source code: 30 MB
108 <li>Object code: 1000 MB
John Criswell0b459202003-07-08 20:35:59 +0000109 <li>C front end: 210 MB
John Criswellce760f62003-07-03 16:01:38 +0000110 </ul>
111 </ul>
112 </ul>
113
John Criswell0b459202003-07-08 20:35:59 +0000114 <p>
115 If you want to compile your own version of the C front end, you will need
116 additional disk space:
117 </p>
118
119 <ul>
120 <li>Linux on x86
121 <ul>
122 <li> Approximately 249 MB of Free Disk Space
123 <ul>
124 <li>Source code: 146 MB
125 <li>Object code: 82 MB
126 <li>Installed binaries: 21 MB
127 </ul>
128 </ul>
129
130 <p>
131
132 <li>Solaris on Sparc
133 <ul>
134 <li> Approximately 264 MB of Free Disk Space
135 <ul>
136 <li>Source code: 146 MB
137 <li>Object code: 93 MB
138 <li>Installed binaries: 25 MB
139 </ul>
140 </ul>
141 </ul>
142
143 <p>
John Criswellce760f62003-07-03 16:01:38 +0000144 LLVM <i>may</i> compile on other platforms. The LLVM utilities should work
145 on other platforms, so it should be possible to generate and produce LLVM
146 bytecode on unsupported platforms (although bytecode generated on one
147 platform may not work on another platform). However, the code generators
Misha Brukmanc56e5822003-07-03 16:29:36 +0000148 and Just-In-Time (JIT) compilers only generate SparcV9 or x86 machine code.
John Criswell0b459202003-07-08 20:35:59 +0000149 </p>
John Criswellce760f62003-07-03 16:01:38 +0000150
151 <!--=====================================================================-->
152 <h4><a name="software"><b>Software</b></a></h4>
153 <!--=====================================================================-->
154 <p>
John Criswell6dd90d22003-07-03 16:43:01 +0000155
156 Unpacking the distribution requires the following tools:
157 <dl compact>
158 <dt>GNU Zip (gzip)
159 <dt>GNU Tar
160 <dd>
161 These tools are needed to uncompress and unarchive the software.
162 Regular Solaris <tt>tar</tt> may work for unpacking the TAR archive but
163 is untested.
164 </dl>
165
John Criswellce760f62003-07-03 16:01:38 +0000166 Compiling LLVM requires that you have several different software packages
167 installed:
168
169 <dl compact>
170 <dt> GCC
171 <dd>
172 The GNU Compiler Collection must be installed with C and C++ language
173 support. GCC 3.2.x works, and GCC 3.x is generally supported.
174
175 <p>
176 Note that we currently do not support any other C++ compiler.
177 </p>
178
179 <dt> GNU Make
180 <dd>
181 The LLVM build system relies upon GNU Make extensions. Therefore, you
182 will need GNU Make (sometimes known as gmake) to build LLVM.
183 <p>
184
185 <dt> Flex and Bison
186 <dd>
187 The LLVM source code is built using flex and bison. You will not be
188 able to configure and compile LLVM without them.
189 <p>
190
191 <dt> GNU M4
192 <dd>
193 If you are installing Bison on your machine for the first time, you
194 will need GNU M4 (version 1.4 or higher).
195 </dl>
196
197 <p>
198 There are some additional tools that you may want to have when working with
199 LLVM:
200 </p>
201
202 <ul>
203 <li>GNU Autoconf
204 <li>GNU M4
205 <p>
206 If you want to make changes to the configure scripts, you will need
207 GNU autoconf (2.53 or higher), and consequently, GNU M4 (version 1.4
208 or higher).
209 </p>
210 </ul>
211
212
213 <p>The <a href="starting">next section</a> of this guide is meant to get
John Criswell85ed3612003-06-12 19:34:44 +0000214 you up and running with LLVM and to give you some basic information about
215 the LLVM environment. The <a href"#quickstart">first subsection</a> gives
216 a short summary for those who are already familiar with the system and
217 want to get started as quickly as possible.
218
219 <p>The later sections of this guide describe the <a
John Criswellcb27f1e2003-07-01 21:55:57 +0000220 href="#layout">general layout</a> of the the LLVM source-tree, a <a
John Criswell85ed3612003-06-12 19:34:44 +0000221 href="#tutorial">simple example</a> using the LLVM tool chain, and <a
222 href="#links">links</a> to find more information about LLVM or to get
223 help via e-mail.
224
225 <!--=====================================================================-->
226 <center>
John Criswell0b459202003-07-08 20:35:59 +0000227 <h2><a name="starting"><b>Getting Started with LLVM</b></a></h2>
John Criswell85ed3612003-06-12 19:34:44 +0000228 </center>
229 <!--=====================================================================-->
230
John Criswell7a73b802003-06-30 21:59:07 +0000231 <!--=====================================================================-->
John Criswell85ed3612003-06-12 19:34:44 +0000232 <h3><a name="quickstart"><b>Getting Started Quickly (A Summary)</b></a></h3>
233 <!--=====================================================================-->
234
235 Here's the short story for getting up and running quickly with LLVM:
Chris Lattner96768ea2003-02-14 04:22:13 +0000236 <ol>
John Criswell0b459202003-07-08 20:35:59 +0000237 <li>Install the C front end:
John Criswellce760f62003-07-03 16:01:38 +0000238 <ol>
John Criswell0b459202003-07-08 20:35:59 +0000239 <li><tt>cd <i>where-you-want-the-C-front-end-to-live</i></tt>
240 <li><tt>gunzip --stdout cfrontend.<i>platform</i>.tar.gz | tar -xvf
241 -</tt>
242 </ol>
John Criswell7a73b802003-06-30 21:59:07 +0000243
John Criswell0b459202003-07-08 20:35:59 +0000244 <p>
245
246 <li>Get the Source Code
247 <ul>
248 <li>With the distributed files:
249 <ol>
250 <li><tt>cd <i>where-you-want-llvm-to-live</i></tt>
251 <li><tt>gunzip --stdout llvm.tar.gz | tar -xvf -</tt>
Misha Brukmanc103adf2003-08-11 18:45:46 +0000252 <li><tt>gunzip --stdout cfrontend.<i>platform</i>.tar.gz | tar
253 -xvf -</tt>
John Criswell0b459202003-07-08 20:35:59 +0000254 <li><tt>cd llvm</tt>
255 </ol>
256
257 <p>
258
259 <li>With anonymous CVS access:
260 <ol>
Misha Brukmanc103adf2003-08-11 18:45:46 +0000261 <li>Find the path to the CVS repository containing LLVM (we'll
262 call this <i>CVSROOTDIR</i>).
John Criswell0b459202003-07-08 20:35:59 +0000263 <li><tt>cd <i>where-you-want-llvm-to-live</i></tt>
264 <li><tt>cvs -d <i>CVSROOTDIR</i> checkout llvm</tt>
265 <li><tt>cd llvm</tt>
266 </ol>
267 </ul>
268 </ul>
269
270 <p>
271
272 <li>Configure the LLVM Build Environment
273 <ol>
274 <li>Run <tt>configure</tt> to configure the Makefiles and header
275 files for the default platform.
276 Useful options include:
277 <ul>
278 <li><tt>--with-objroot=<i>directory</i></tt>
279 <br>
Misha Brukmanc103adf2003-08-11 18:45:46 +0000280 Specify where object files should be placed during the
281 build.
John Criswell0b459202003-07-08 20:35:59 +0000282
283 <li><tt>--with-llvmgccdir=<i>directory</i></tt>
284 <br>
285 Specify where the LLVM C frontend is going to be installed.
286 </ul>
287 </ol>
288
289 <p>
290
291 <li>Build the LLVM Suite
292 <ol>
293 <li>Set your LLVM_LIB_SEARCH_PATH environment variable.
294 <li><tt>gmake -k |& tee gnumake.out
John Criswellce760f62003-07-03 16:01:38 +0000295 &nbsp;&nbsp;&nbsp;# this is csh or tcsh syntax</tt>
296 </ol>
John Criswell0b459202003-07-08 20:35:59 +0000297
John Criswellce760f62003-07-03 16:01:38 +0000298 <p>
John Criswell0b459202003-07-08 20:35:59 +0000299
Chris Lattner96768ea2003-02-14 04:22:13 +0000300 </ol>
John Criswell85ed3612003-06-12 19:34:44 +0000301
John Criswell0b459202003-07-08 20:35:59 +0000302 <p>See <a href="#environment">Setting Up Your Environment</a> on tips to
John Criswell85ed3612003-06-12 19:34:44 +0000303 simplify working with the LLVM front-end and compiled tools. See the
304 other sub-sections below for other useful details in working with LLVM,
305 or go straight to <a href="#layout">Program Layout</a> to learn about the
John Criswell0b459202003-07-08 20:35:59 +0000306 layout of the source code tree. For information on building the C front
307 end yourself, see <a href="#cfront">Compiling the LLVM C Front End</a> for
308 information.
John Criswell85ed3612003-06-12 19:34:44 +0000309
310 <!------------------------------------------------------------------------->
311 <h3><a name="terminology">Terminology and Notation</a></h3>
312 <!------------------------------------------------------------------------->
313
314 <p>Throughout this manual, the following names are used to denote paths
315 specific to the local system and working environment. <i>These are not
John Criswell7a73b802003-06-30 21:59:07 +0000316 environment variables you need to set but just strings used in the rest
317 of this document below</i>. In any of the examples below, simply replace
John Criswell85ed3612003-06-12 19:34:44 +0000318 each of these names with the appropriate pathname on your local system.
Chris Lattner1db872d2002-09-06 16:26:13 +0000319 All these paths are absolute:</p>
John Criswellce760f62003-07-03 16:01:38 +0000320 <dl compact>
321 <dt>CVSROOTDIR
322 <dd>
323 This is the path for the CVS repository containing the LLVM source
324 code. Ask the person responsible for your local LLVM installation to
325 give you this path.
326 <p>
327
328 <dt>OBJ_ROOT
329 <dd>
330 This is the top level directory for where the LLVM suite object files
331 will be placed during the build.
332 <p>
333
334 <dt>LLVMGCCDIR
335 <dd>
336 This is the pathname to the location where the LLVM C Front End will
John Criswell6dd90d22003-07-03 16:43:01 +0000337 be installed. Note that the C front end does not need to be installed
John Criswellce760f62003-07-03 16:01:38 +0000338 during the LLVM suite build; you will just need to know where it will
339 go for configuring the build system and running the test suite later.
340 <p>
John Criswella27028b2003-07-03 16:49:40 +0000341 For the pre-built C front end binaries, the LLVMGCCDIR is
342 <tt>cfrontend/<i>platform</i>/llvm-gcc</tt>.
John Criswellce760f62003-07-03 16:01:38 +0000343
344 <dt>GCCSRC
345 <dd>
346 This is the pathname of the directory where the LLVM C front end source
347 code can be found.
348 <p>
349
350 <dt>GCCOBJ
351 <dd>
352 This is the pathname of the directory where the LLVM C front end object
353 code will be placed during the build. It can be safely removed once
354 the build is complete.
355 </dl>
356
357 <!------------------------------------------------------------------------->
John Criswell0b459202003-07-08 20:35:59 +0000358 <h3><a name="environment">Setting Up Your Environment</a></h3>
John Criswellce760f62003-07-03 16:01:38 +0000359 <!------------------------------------------------------------------------->
360
361 <p>
362 In order to compile and use LLVM, you will need to set some environment
363 variables. There are also some shell aliases which you may find useful.
364 You can set these on the command line, or better yet, set them in your
365 <tt>.cshrc</tt> or <tt>.profile</tt>.
366
367 <dl compact>
368 <dt><tt>LLVM_LIB_SEARCH_PATH</tt>=<tt><i>LLVMGCCDIR</i>/llvm-gcc/bytecode-libs</tt>
369 <dd>
370 This environment variable helps the LLVM C front end find bytecode
371 libraries that it will need for compilation.
372 <p>
373
John Criswellce760f62003-07-03 16:01:38 +0000374 <dt>alias llvmgcc <i>LLVMGCCDIR</i><tt>/bin/llvm-gcc</tt>
375 <dd>
376 This alias allows you to use the LLVM C front end without putting it in
377 your <tt>PATH</tt> or typing in its complete pathname.
378 </dl>
John Criswell85ed3612003-06-12 19:34:44 +0000379
380 <!------------------------------------------------------------------------->
John Criswell312a68c2003-07-07 19:27:35 +0000381 <h3><a name="unpack">Unpacking the LLVM Archives</a></h3>
382 <!------------------------------------------------------------------------->
383
384 <p>
385 If you have the LLVM distribution, you will need to unpack it before you
386 can begin to compile it. LLVM is distributed as a set of four files. Each
387 file is a TAR archive that is compressed with the gzip program.
388 </p>
389
John Criswell0b459202003-07-08 20:35:59 +0000390 <p> The four files are as follows:
John Criswell312a68c2003-07-07 19:27:35 +0000391 <dl compact>
392 <dt>llvm.tar.gz
393 <dd>This is the source code to the LLVM suite.
394 <p>
395
396 <dt>cfrontend.sparc.tar.gz
397 <dd>This is the binary release of the C front end for Solaris/Sparc.
398 <p>
399
400 <dt>cfrontend.x86.tar.gz
401 <dd>This is the binary release of the C front end for Linux/x86.
402 <p>
403
404 <dt>cfrontend-src.tar.gz
405 <dd>This is the source code release of the C front end.
406 <p>
407 </dl>
408
John Criswell312a68c2003-07-07 19:27:35 +0000409 <!------------------------------------------------------------------------->
John Criswell85ed3612003-06-12 19:34:44 +0000410 <h3><a name="checkout">Checkout LLVM from CVS</a></h3>
411 <!------------------------------------------------------------------------->
412
John Criswell312a68c2003-07-07 19:27:35 +0000413 <p>If you have access to our CVS repository, you can get a fresh copy of
414 the entire source code. All you need to do is check it out from CVS as
415 follows:
John Criswell85ed3612003-06-12 19:34:44 +0000416 <ul>
417 <li><tt>cd <i>where-you-want-llvm-to-live</i></tt>
418 <li><tt>cvs -d <i>CVSROOTDIR</i> checkout llvm</tt></p>
419 </ul>
420
421 <p>This will create an '<tt>llvm</tt>' directory in the current
422 directory and fully populate it with the LLVM source code, Makefiles,
423 test directories, and local copies of documentation files.</p>
424
John Criswellce760f62003-07-03 16:01:38 +0000425 <p>
426 Note that the C front end is not included in the CVS repository. You
427 should have either downloaded the source, or better yet, downloaded the
428 binary distribution for your platform.
429 </p>
430
John Criswell85ed3612003-06-12 19:34:44 +0000431 <!------------------------------------------------------------------------->
John Criswell0b459202003-07-08 20:35:59 +0000432 <h3><a name="installcf">Install the C Front End</a></h3>
433 <!------------------------------------------------------------------------->
434
435 <p>
436 Before configuring and compiling the LLVM suite, it is best to extract the
437 LLVM C front end. While not used in building, the C front end is used by
438 the LLVM test suite, and its location must be given to the
439 <tt>configure</tt> script before the LLVM suite can be built.
440 </p>
441
442 <p>
443 To install the C front end, do the following:
444 <ol>
445 <li><tt>cd <i>where-you-want-the-front-end-to-live</i></tt>
446 <li><tt>gunzip --stdout cfrontend.<i>platform</i>.tar.gz | tar -xvf
447 -</tt>
448 </ol>
449
450 <!------------------------------------------------------------------------->
John Criswellce760f62003-07-03 16:01:38 +0000451 <h3><a name="config">Local LLVM Configuration</a></h3>
John Criswell85ed3612003-06-12 19:34:44 +0000452 <!------------------------------------------------------------------------->
453
John Criswellce760f62003-07-03 16:01:38 +0000454 <p>Once checked out from the CVS repository, the LLVM suite source code
455 must be configured via the <tt>configure</tt> script. This script sets
456 variables in <tt>llvm/Makefile.config</tt> and
John Criswell7a73b802003-06-30 21:59:07 +0000457 <tt>llvm/include/Config/config.h</tt>.
458
459 <p>
John Criswell0b459202003-07-08 20:35:59 +0000460 The following environment variables are used by the <tt>configure</tt>
461 script to configure the build system:
John Criswell7a73b802003-06-30 21:59:07 +0000462 </p>
John Criswell85ed3612003-06-12 19:34:44 +0000463
John Criswell0b459202003-07-08 20:35:59 +0000464 <table border=1>
465 <tr>
466 <th>Variable</th>
467 <th>
468 Purpose
469 </th>
470 </tr>
John Criswell85ed3612003-06-12 19:34:44 +0000471
John Criswell0b459202003-07-08 20:35:59 +0000472 <tr>
473 <td>CC</td>
474 <td>
475 Tells <tt>configure</tt> which C compiler to use. By default,
476 <tt>configure</tt> will look for the first GCC compiler in
477 <tt>PATH</tt>. Use this variable to override
478 <tt>configure</tt>'s default behavior.
479 </td>
480 </tr>
481
482 <tr>
483 <td>CXX</td>
484 <td>
485 Tells <tt>configure</tt> which C++ compiler to use. By default,
486 <tt>configure</tt> will look for the first GCC compiler in
487 <tt>PATH</tt>. Use this variable to override
488 <tt>configure</tt>'s default behavior.
489 </td>
490 </tr>
491 </table>
492
493 <p>
John Criswell7a73b802003-06-30 21:59:07 +0000494 The following options can be used to set or enable LLVM specific options:
John Criswell0b459202003-07-08 20:35:59 +0000495 </p>
John Criswell7a73b802003-06-30 21:59:07 +0000496
John Criswellce760f62003-07-03 16:01:38 +0000497 <dl compact>
498 <dt><i>--with-objroot=OBJ_ROOT</i>
499 <dd>
John Criswell7a73b802003-06-30 21:59:07 +0000500 Path to the directory where
501 object files, libraries, and executables should be placed.
John Criswellce760f62003-07-03 16:01:38 +0000502 If this is set to <tt>.</tt>, then the object files will be placed
503 within the source code tree. If left unspecified, the default value is
John Criswellef0096f2003-08-08 22:36:30 +0000504 the following:
505 <ul>
506 <li>
507 If the USER environment variable is specified and the directory
508 <tt>/localhome/$USER</tt> exists, then the default value is
509 <tt>/localhome/$USER</tt>.
510
511 <li>
512 Otherwise, the default value is <tt>.</tt>.
513 </ul>
John Criswell7a73b802003-06-30 21:59:07 +0000514 (See the Section on <a href=#objfiles>
John Criswell0b459202003-07-08 20:35:59 +0000515 The Location of LLVM Object Files</a>
John Criswell7a73b802003-06-30 21:59:07 +0000516 for more information.)
John Criswellce760f62003-07-03 16:01:38 +0000517 <p>
518 <dt><i>--with-llvmgccdir=LLVMGCCDIR</i>
519 <dd>
520 Path to the location where the LLVM C front end binaries and
521 associated libraries will be installed.
522 <p>
523 <dt><i>--enable-optimized</i>
524 <dd>
John Criswell7a73b802003-06-30 21:59:07 +0000525 Enables optimized compilation (debugging symbols are removed and GCC
John Criswellce760f62003-07-03 16:01:38 +0000526 optimization flags are enabled). The default is to use an unoptimized
527 build (also known as a debug build).
528 <p>
529 <dt><i>--enable-jit</i>
530 <dd>
John Criswell7a73b802003-06-30 21:59:07 +0000531 Compile the Just In Time (JIT) functionality. This is not available
John Criswellce760f62003-07-03 16:01:38 +0000532 on all platforms. The default is dependent on platform, so it is best
533 to explicitly enable it if you want it.
534 </dl>
John Criswell7a73b802003-06-30 21:59:07 +0000535
536 In addition to running <tt>configure</tt>, you must set the
John Criswell85ed3612003-06-12 19:34:44 +0000537 <tt>LLVM_LIB_SEARCH_PATH</tt> environment variable in your startup scripts.
538 This environment variable is used to locate "system" libraries like
539 "<tt>-lc</tt>" and "<tt>-lm</tt>" when linking. This variable should be set
540 to the absolute path for the bytecode-libs subdirectory of the C front-end
John Criswellce760f62003-07-03 16:01:38 +0000541 install, or LLVMGCCDIR/llvm-gcc/bytecode-libs. For example, one might
542 set <tt>LLVM_LIB_SEARCH_PATH</tt> to
John Criswell85ed3612003-06-12 19:34:44 +0000543 <tt>/home/vadve/lattner/local/x86/llvm-gcc/bytecode-libs</tt> for the X86
544 version of the C front-end on our research machines.<p>
545
546 <!------------------------------------------------------------------------->
John Criswellce760f62003-07-03 16:01:38 +0000547 <h3><a name="compile">Compiling the LLVM Suite Source Code</a></h3>
548 <!------------------------------------------------------------------------->
549
550 Once you have configured LLVM, you can build it. There are three types of
551 builds:
552
553 <dl compact>
554 <dt>Debug Builds
555 <dd>
556 These builds are the default. They compile the tools and libraries
557 with debugging information.
558 <p>
559
560 <dt>Release (Optimized) Builds
561 <dd>
562 These builds are enabled with the <tt>--enable-optimized</tt> option to
563 <tt>configure</tt>. They compile the tools and libraries with GCC
564 optimizer flags on and strip debugging information from the libraries
565 and executables it generates.
566 <p>
567
568 <dt>Profile Builds
569 <dd>
570 These builds are for use with profiling. They compile profiling
571 information into the code for use with programs like <tt>gprof</tt>.
572 Profile builds must be started by setting variables on the
John Criswell0b459202003-07-08 20:35:59 +0000573 <tt>gmake</tt> command line.
John Criswellce760f62003-07-03 16:01:38 +0000574 </dl>
575
576 Once you have LLVM configured, you can build it by entering the top level
577 <tt>llvm</tt> directory and issuing the following command:
578 <p>
John Criswell0b459202003-07-08 20:35:59 +0000579 <tt>gmake</tt>
John Criswellce760f62003-07-03 16:01:38 +0000580
581 <p>
582 If you have multiple processors in your machine, you may wish to use some
583 of the parallel build options provided by GNU Make. For example, you could
584 use the command:
585 </p>
586
587 <p>
John Criswell0b459202003-07-08 20:35:59 +0000588 <tt>gmake -j2</tt>
John Criswellce760f62003-07-03 16:01:38 +0000589
590 <p>
591 There are several other targets which are useful when working with the LLVM
592 source code:
593
594 <dl compact>
John Criswell0b459202003-07-08 20:35:59 +0000595 <dt><tt>gmake clean</tt>
John Criswellce760f62003-07-03 16:01:38 +0000596 <dd>
597 Removes all files generated by the build. This includes object files,
598 generated C/C++ files, libraries, and executables.
599 <p>
600
John Criswell0b459202003-07-08 20:35:59 +0000601 <dt><tt>gmake distclean</tt>
John Criswellce760f62003-07-03 16:01:38 +0000602 <dd>
John Criswell0b459202003-07-08 20:35:59 +0000603 Removes everything that <tt>gmake clean</tt> does, but also removes
John Criswellce760f62003-07-03 16:01:38 +0000604 files generated by <tt>configure</tt>. It attempts to return the
605 source tree to the original state in which it was shipped.
606 <p>
607 </dl>
608
609 It is also possible to override default values from <tt>configure</tt> by
610 declaring variables on the command line. The following are some examples:
611
612 <dl compact>
John Criswell0b459202003-07-08 20:35:59 +0000613 <dt><tt>gmake ENABLE_OPTIMIZED=1</tt>
John Criswellce760f62003-07-03 16:01:38 +0000614 <dd>
615 Perform a Release (Optimized) build.
616 <p>
617
John Criswell0b459202003-07-08 20:35:59 +0000618 <dt><tt>gmake ENABLE_PROFILING=1</tt>
John Criswellce760f62003-07-03 16:01:38 +0000619 <dd>
620 Perform a Profiling build.
621 <p>
622
John Criswell0b459202003-07-08 20:35:59 +0000623 <dt><tt>gmake VERBOSE=1</tt>
John Criswellce760f62003-07-03 16:01:38 +0000624 <dd>
John Criswell0b459202003-07-08 20:35:59 +0000625 Print what <tt>gmake</tt> is doing on standard output.
John Criswellce760f62003-07-03 16:01:38 +0000626 <p>
627 </dl>
628
629 Every directory in the LLVM source tree includes a <tt>Makefile</tt> to
630 build it and any subdirectories that it contains. Entering any directory
John Criswell0b459202003-07-08 20:35:59 +0000631 inside the LLVM source tree and typing <tt>gmake</tt> should rebuild
John Criswellce760f62003-07-03 16:01:38 +0000632 anything in or below that directory that is out of date.
633
634 <!------------------------------------------------------------------------->
John Criswell0b459202003-07-08 20:35:59 +0000635 <h3><a name="objfiles">The Location of LLVM Object Files</a></h3>
John Criswell85ed3612003-06-12 19:34:44 +0000636 <!------------------------------------------------------------------------->
637
John Criswellce760f62003-07-03 16:01:38 +0000638 <p>The LLVM build system sends most output files generated during the build
639 into the directory defined by the variable <i>OBJ_ROOT</i> in
640 <tt>llvm/Makefile.config</tt>, which is set by the <i>--with-objroot</i>
641 option in <tt>configure</tt>. This can be either just your normal LLVM
John Criswell85ed3612003-06-12 19:34:44 +0000642 source tree or some other directory writable by you. You may wish to put
643 object files on a different filesystem either to keep them from being backed
644 up or to speed up local builds.
645
John Criswellce760f62003-07-03 16:01:38 +0000646 <p>
647 If <i>OBJ_ROOT</i> is specified, then the build system will create a
648 directory tree underneath it that resembles the source code's pathname
John Criswellef0096f2003-08-08 22:36:30 +0000649 relative to your home directory (unless <i>OBJ_ROOT</i> is set to
650 <tt>.</tt>, in which case object files are placed within the LLVM source
651 tree).
652 </p>
653
654 <p>
655 Note that
656 <i>--with-objroot</i>=<tt>.</tt>
657 and
658 <i>--with-objroot</i>=<tt>`pwd`</tt>
659 are not the same thing. The former will simply place object files within
660 the source tree, while the latter will set the location of object files
661 using the source tree's relative path from the home directory.
John Criswellce760f62003-07-03 16:01:38 +0000662 </p>
John Criswell85ed3612003-06-12 19:34:44 +0000663
John Criswellce760f62003-07-03 16:01:38 +0000664 <p>
665 For example, suppose that <i>OBJ_ROOT</i> is set to <tt>/tmp</tt> and the
666 LLVM suite source code is located in <tt>/usr/home/joe/src/llvm</tt>, where
667 <tt>/usr/home/joe</tt> is the home directory of a user named Joe. Then,
668 the object files will be placed in <tt>/tmp/src/llvm</tt>.
669 </p>
John Criswell85ed3612003-06-12 19:34:44 +0000670
John Criswellce760f62003-07-03 16:01:38 +0000671 <p>
672 The LLVM build will place files underneath <i>OBJ_ROOT</i> in directories
673 named after the build type:
674 </p>
John Criswell85ed3612003-06-12 19:34:44 +0000675
John Criswellce760f62003-07-03 16:01:38 +0000676 <dl compact>
677 <dt>Debug Builds
678 <dd>
679 <dl compact>
680 <dt>Tools
681 <dd><tt><i>OBJ_ROOT</i>/llvm/tools/Debug</tt>
682 <dt>Libraries
683 <dd><tt><i>OBJ_ROOT</i>/llvm/lib/Debug</tt>
684 </dl>
685 <p>
John Criswell85ed3612003-06-12 19:34:44 +0000686
John Criswellce760f62003-07-03 16:01:38 +0000687 <dt>Release Builds
688 <dd>
689 <dl compact>
690 <dt>Tools
691 <dd><tt><i>OBJ_ROOT</i>/llvm/tools/Release</tt>
692 <dt>Libraries
693 <dd><tt><i>OBJ_ROOT</i>/llvm/lib/Release</tt>
694 </dl>
695 <p>
Chris Lattner7fe7f812002-07-24 19:51:14 +0000696
John Criswellce760f62003-07-03 16:01:38 +0000697 <dt>Profile Builds
698 <dd>
699 <dl compact>
700 <dt>Tools
701 <dd><tt><i>OBJ_ROOT</i>/llvm/tools/Profile</tt>
702 <dt>Libraries
703 <dd><tt><i>OBJ_ROOT</i>/llvm/lib/Profile</tt>
704 </dl>
705 </dl>
John Criswell85ed3612003-06-12 19:34:44 +0000706
707 <!--=====================================================================-->
708 <center>
709 <h2><a name="layout"><b>Program Layout</b></a></h2>
710 </center>
711 <!--=====================================================================-->
712
John Criswellce760f62003-07-03 16:01:38 +0000713 <p>One useful source of information about the LLVM source base is the LLVM <a
John Criswell85ed3612003-06-12 19:34:44 +0000714 href="http://www.doxygen.org">doxygen</a> documentation, available at <tt><a
715 href="http://llvm.cs.uiuc.edu/doxygen/">http://llvm.cs.uiuc.edu/doxygen/</a></tt>. The
716 following is a brief introduction to code layout:</p>
717
718
719 <!------------------------------------------------------------------------->
720 <h3><a name="cvsdir"><tt>CVS</tt> directories</a></h3>
721 <!------------------------------------------------------------------------->
722
723 Every directory checked out of CVS will contain a <tt>CVS</tt> directory;
724 for the most part these can just be ignored.
725
726
727 <!------------------------------------------------------------------------->
John Criswell85ed3612003-06-12 19:34:44 +0000728 <h3><a name="include"><tt>llvm/include</tt></a></h3>
729 <!------------------------------------------------------------------------->
730
731 This directory contains public header files exported from the LLVM
John Criswell7a73b802003-06-30 21:59:07 +0000732 library. The three main subdirectories of this directory are:<p>
John Criswell85ed3612003-06-12 19:34:44 +0000733
John Criswell8df90e02003-06-11 20:46:40 +0000734 <ol>
John Criswell85ed3612003-06-12 19:34:44 +0000735 <li><tt>llvm/include/llvm</tt> - This directory contains all of the LLVM
736 specific header files. This directory also has subdirectories for
737 different portions of LLVM: <tt>Analysis</tt>, <tt>CodeGen</tt>,
738 <tt>Reoptimizer</tt>, <tt>Target</tt>, <tt>Transforms</tt>, etc...
739
740 <li><tt>llvm/include/Support</tt> - This directory contains generic
John Criswellce760f62003-07-03 16:01:38 +0000741 support libraries that are independent of LLVM, but are used by LLVM.
John Criswell7a73b802003-06-30 21:59:07 +0000742 For example, some C++ STL utilities and a Command Line option processing
743 library.
744
745 <li><tt>llvm/include/Config</tt> - This directory contains header files
746 configured by the <tt>configure</tt> script. They wrap "standard" UNIX
747 and C header files. Source code can include these header files which
748 automatically take care of the conditional #includes that the configure
749 script generates.
Chris Lattner7fe7f812002-07-24 19:51:14 +0000750 </ol>
John Criswell85ed3612003-06-12 19:34:44 +0000751
752 <!------------------------------------------------------------------------->
753 <h3><a name="lib"><tt>llvm/lib</tt></a></h3>
754 <!------------------------------------------------------------------------->
755
John Criswell7a73b802003-06-30 21:59:07 +0000756 This directory contains most of the source files of the LLVM system. In
757 LLVM almost all
758 code exists in libraries, making it very easy to share code among the
John Criswell85ed3612003-06-12 19:34:44 +0000759 different <a href="#tools">tools</a>.<p>
760
761 <dl compact>
762 <dt><tt>llvm/lib/VMCore/</tt><dd> This directory holds the core LLVM
763 source files that implement core classes like Instruction and BasicBlock.
764
765 <dt><tt>llvm/lib/AsmParser/</tt><dd> This directory holds the source code
766 for the LLVM assembly language parser library.
767
768 <dt><tt>llvm/lib/ByteCode/</tt><dd> This directory holds code for reading
769 and write LLVM bytecode.
770
771 <dt><tt>llvm/lib/CWriter/</tt><dd> This directory implements the LLVM to C
772 converter.
773
774 <dt><tt>llvm/lib/Analysis/</tt><dd> This directory contains a variety of
775 different program analyses, such as Dominator Information, Call Graphs,
776 Induction Variables, Interval Identification, Natural Loop Identification,
777 etc...
778
779 <dt><tt>llvm/lib/Transforms/</tt><dd> This directory contains the source
780 code for the LLVM to LLVM program transformations, such as Aggressive Dead
781 Code Elimination, Sparse Conditional Constant Propagation, Inlining, Loop
John Criswell0c4dccc2003-08-08 22:46:30 +0000782 Invarient Code Motion, Dead Global Elimination, and many others...
John Criswell85ed3612003-06-12 19:34:44 +0000783
784 <dt><tt>llvm/lib/Target/</tt><dd> This directory contains files that
785 describe various target architectures for code generation. For example,
786 the llvm/lib/Target/Sparc directory holds the Sparc machine
787 description.<br>
788
789 <dt><tt>llvm/lib/CodeGen/</tt><dd> This directory contains the major parts
790 of the code generator: Instruction Selector, Instruction Scheduling, and
791 Register Allocation.
792
793 <dt><tt>llvm/lib/Reoptimizer/</tt><dd> This directory holds code related
794 to the runtime reoptimizer framework that is currently under development.
795
796 <dt><tt>llvm/lib/Support/</tt><dd> This directory contains the source code
797 that corresponds to the header files located in
798 <tt>llvm/include/Support/</tt>.
799 </dl>
800
801 <!------------------------------------------------------------------------->
802 <h3><a name="test"><tt>llvm/test</tt></a></h3>
803 <!------------------------------------------------------------------------->
804
805 <p>This directory contains regression tests and source code that is used to
806 test the LLVM infrastructure...</p>
807
808 <!------------------------------------------------------------------------->
809 <h3><a name="tools"><tt>llvm/tools</tt></a></h3>
810 <!------------------------------------------------------------------------->
811
812 <p>The <b>tools</b> directory contains the executables built out of the
813 libraries above, which form the main part of the user interface. You can
814 always get help for a tool by typing <tt>tool_name --help</tt>. The
815 following is a brief introduction to the most important tools.</p>
816
817 <dl compact>
818 <dt><tt><b>as</b></tt><dd>The assembler transforms the human readable
819 LLVM assembly to LLVM bytecode.<p>
820
821 <dt><tt><b>dis</b></tt><dd>The disassembler transforms the LLVM bytecode
822 to human readable LLVM assembly. Additionally it can convert LLVM
823 bytecode to C, which is enabled with the <tt>-c</tt> option.<p>
824
825 <dt><tt><b>lli</b></tt><dd> <tt>lli</tt> is the LLVM interpreter, which
826 can directly execute LLVM bytecode (although very slowly...). In addition
John Criswellce760f62003-07-03 16:01:38 +0000827 to a simple interpreter, <tt>lli</tt> is also has debugger and tracing
John Criswell85ed3612003-06-12 19:34:44 +0000828 modes (entered by specifying <tt>-debug</tt> or <tt>-trace</tt> on the
Misha Brukmanc56e5822003-07-03 16:29:36 +0000829 command line, respectively). Finally, for architectures that support it
830 (currently only x86 and Sparc), by default, <tt>lli</tt> will function as
831 a Just-In-Time compiler (if the functionality was compiled in), and will
832 execute the code <i>much</i> faster than the interpreter.<p>
John Criswell85ed3612003-06-12 19:34:44 +0000833
834 <dt><tt><b>llc</b></tt><dd> <tt>llc</tt> is the LLVM backend compiler,
Misha Brukmanc56e5822003-07-03 16:29:36 +0000835 which translates LLVM bytecode to a SPARC or x86 assembly file.<p>
John Criswell85ed3612003-06-12 19:34:44 +0000836
837 <dt><tt><b>llvmgcc</b></tt><dd> <tt>llvmgcc</tt> is a GCC based C frontend
838 that has been retargeted to emit LLVM code as the machine code output. It
839 works just like any other GCC compiler, taking the typical <tt>-c, -S, -E,
840 -o</tt> options that are typically used. The source code for the
841 <tt>llvmgcc</tt> tool is currently not included in the LLVM cvs tree
842 because it is quite large and not very interesting.<p>
843
844 <ol>
845 <dt><tt><b>gccas</b></tt><dd> This tool is invoked by the
846 <tt>llvmgcc</tt> frontend as the "assembler" part of the compiler. This
847 tool actually assembles LLVM assembly to LLVM bytecode,
John Criswell7a73b802003-06-30 21:59:07 +0000848 performs a variety of optimizations,
John Criswell85ed3612003-06-12 19:34:44 +0000849 and outputs LLVM bytecode. Thus when you invoke <tt>llvmgcc -c x.c -o
850 x.o</tt>, you are causing <tt>gccas</tt> to be run, which writes the
851 <tt>x.o</tt> file (which is an LLVM bytecode file that can be
852 disassembled or manipulated just like any other bytecode file). The
853 command line interface to <tt>gccas</tt> is designed to be as close as
854 possible to the <b>system</b> '<tt>as</tt>' utility so that the gcc
John Criswellce760f62003-07-03 16:01:38 +0000855 frontend itself did not have to be modified to interface to a "weird"
John Criswell85ed3612003-06-12 19:34:44 +0000856 assembler.<p>
857
858 <dt><tt><b>gccld</b></tt><dd> <tt>gccld</tt> links together several LLVM
859 bytecode files into one bytecode file and does some optimization. It is
860 the linker invoked by the gcc frontend when multiple .o files need to be
861 linked together. Like <tt>gccas</tt> the command line interface of
862 <tt>gccld</tt> is designed to match the system linker, to aid
863 interfacing with the GCC frontend.<p>
864 </ol>
865
866 <dt><tt><b>opt</b></tt><dd> <tt>opt</tt> reads LLVM bytecode, applies a
867 series of LLVM to LLVM transformations (which are specified on the command
868 line), and then outputs the resultant bytecode. The '<tt>opt --help</tt>'
869 command is a good way to get a list of the program transformations
870 available in LLVM.<p>
871
872
873 <dt><tt><b>analyze</b></tt><dd> <tt>analyze</tt> is used to run a specific
874 analysis on an input LLVM bytecode file and print out the results. It is
875 primarily useful for debugging analyses, or familiarizing yourself with
876 what an analysis does.<p>
877
878 </dl>
John Criswell0b459202003-07-08 20:35:59 +0000879
Misha Brukmanc103adf2003-08-11 18:45:46 +0000880 <!------------------------------------------------------------------------->
881 <h3><a name="utils"><tt>llvm/utils</tt></a></h3>
882 <!------------------------------------------------------------------------->
883
884 This directory contains utilities for working with LLVM sourcecode, and some
885 of the utilities are actually required as part of the build process because
886 they are code generators for parts of LLVM infrastructure.
887
888 <dl compact>
Misha Brukmane0db8152003-08-11 19:13:12 +0000889 <td><tt><b>Burg/</b></tt><dd> <tt>Burg</tt> is an instruction selector
Misha Brukmanc103adf2003-08-11 18:45:46 +0000890 generator -- it builds trees on which it then performs pattern-matching to
891 select instructions according to the patterns the user has specified. Burg
892 is currently used in the Sparc V9 backend.<p>
893
894 <dt><tt><b>codegen-diff</b></tt><dd> <tt>codegen-diff</tt> is a script
895 that finds differences between code that LLC generates and code that LLI
896 generates. This is a useful tool if you are debugging one of them,
897 assuming that the other generates correct output. For the full user
898 manual, run <tt>`perldoc codegen-diff'</tt>.<p>
899
900 <dt><tt><b>cvsupdate</b></tt><dd> <tt>cvsupdate</tt> is a script that will
901 update your CVS tree, but produce a much cleaner and more organized output
902 than simply running <tt>`cvs up -dP'</tt> will. For example, it will group
903 together all the new and updated files and modified files in separate
904 sections, so you can see at a glance what has changed. If you are at the
905 top of your LLVM CVS tree, running <tt>utils/cvsupdate</tt> is the
906 preferred way of updating the tree.<p>
907
Misha Brukmane0db8152003-08-11 19:13:12 +0000908 <dt><tt><b>emacs/</b></tt><dd> The <tt>emacs</tt> directory contains
Misha Brukmanc103adf2003-08-11 18:45:46 +0000909 syntax-highlighting files which will work with Emacs and XEmacs editors,
910 providing syntax highlighting support for LLVM assembly files and TableGen
Misha Brukmane0db8152003-08-11 19:13:12 +0000911 description files. For information on how to use the syntax files, consult
912 the <tt>README</tt> file in that directory.<p>
Misha Brukmanc103adf2003-08-11 18:45:46 +0000913
914 <dt><tt><b>getsrcs.sh</b></tt><dd> The <tt>getsrcs.sh</tt> script finds
915 and outputs all non-generated source files, which is useful if one wishes
916 to do a lot of development across directories and does not want to
917 individually find each file. One way to use it is to run, for example:
918 <tt>xemacs `utils/getsources.sh`</tt> from the top of your LLVM source
919 tree.<p>
920
921 <dt><tt><b>makellvm</b></tt><dd> The <tt>makellvm</tt> script compiles all
922 files in the current directory and then compiles and links the tool that
923 is the first argument. For example, assuming you are in the directory
924 <tt>llvm/lib/Target/Sparc</tt>, if <tt>makellvm</tt> is in your path,
925 simply running <tt>makellvm llc</tt> will make a build of the current
926 directory, switch to directory <tt>llvm/tools/llc</tt> and build it,
927 causing a re-linking of LLC.<p>
928
929 <dt><tt><b>NightlyTest.pl</b></tt> and
930 <tt><b>NightlyTestTemplate.html</b></tt><dd> These files are used in a
931 cron script to generate nightly status reports of the functionality of
932 tools, and the results can be seen by following the appropriate link on
933 the <a href="http://llvm.cs.uiuc.edu/">LLVM homepage</a>.<p>
934
Misha Brukmane0db8152003-08-11 19:13:12 +0000935 <dt><tt><b>TableGen/</b></tt><dd> The <tt>TableGen</tt> directory contains
Misha Brukmanc103adf2003-08-11 18:45:46 +0000936 the tool used to generate register descriptions, instruction set
Chris Lattnera8f5de32003-08-11 18:53:14 +0000937 descriptions, and even assemblers from common TableGen description
Misha Brukmanc103adf2003-08-11 18:45:46 +0000938 files.<p>
939
Misha Brukmane0db8152003-08-11 19:13:12 +0000940 <dt><tt><b>vim/</b></tt><dd> The <tt>vim</tt> directory contains
Misha Brukmanc103adf2003-08-11 18:45:46 +0000941 syntax-highlighting files which will work with the VIM editor, providing
942 syntax highlighting support for LLVM assembly files and TableGen
Misha Brukmane0db8152003-08-11 19:13:12 +0000943 description files. For information on how to use the syntax files, consult
944 the <tt>README</tt> file in that directory.<p>
Misha Brukmanc103adf2003-08-11 18:45:46 +0000945
946 </dl>
947
John Criswell85ed3612003-06-12 19:34:44 +0000948 <!--=====================================================================-->
John Criswell0b459202003-07-08 20:35:59 +0000949 <h2><center><a name="cfront">Compiling the LLVM C Front End</center></h2>
950 <!--=====================================================================-->
951
952 <p>
953 <b>
John Criswell0c4dccc2003-08-08 22:46:30 +0000954 This step is optional if you have the C front end binary distribution for
John Criswell0b459202003-07-08 20:35:59 +0000955 your platform.
956 </b>
957 </p>
958
959 Now that you have the LLVM suite built, you can build the C front end. For
960 those of you that have built GCC before, the process is very similar.
961 <p>
962 Be forewarned, though: the build system for the C front end is not as
963 polished as the rest of the LLVM code, so there will be many warnings and
964 errors that you will need to ignore for now:
965
966 <ol>
967 <li>Ensure that <tt><i>OBJ_ROOT</i>/llvm/tools/Debug</tt> is at the
968 <i>end</i> of your <tt>PATH</tt> environment variable. The front end
969 build needs to know where to find the LLVM tools, but you want to
970 ensure that these tools are not found before the system assembler and
971 linker that you normally use for compilation.
972
973 <li><tt>cd <i>GCCOBJ</i></tt>
974
975 <li>Configure the source code:
976 <ul>
977 <li>On Linux/x86, use
978 <ul>
979 <li><tt><i>GCCSRC</i>/configure --prefix=<i>LLVMGCCDIR</i>
980 --enable-languages=c</tt>
981 </ul>
982
983 <li>On Solaris/Sparc, use
984 <ul>
985 <li><tt><i>GCCSRC</i>/configure --prefix=<i>LLVMGCCDIR</i>
986 --enable-languages=c --target=sparcv9-sun-solaris2</tt>
987 </ul>
988 </ul>
989
990 <li><tt>gmake</tt>
991
992 <li>The build will eventually fail. Don't worry; chances are good that
993 everything that needed to build is built.
994
995 <li><tt>gmake -k install</tt>
996 </ol>
997
998 <p>
999 Once this is done, you should have a built front end compiler in
1000 <tt><i>LLVMGCCDIR</i></tt>.
1001 </p>
1002
1003 <!--=====================================================================-->
1004 <h2>
1005 <center><a name="tutorial">An Example Using the LLVM Tool Chain</center>
1006 </h2>
John Criswell85ed3612003-06-12 19:34:44 +00001007 <!--=====================================================================-->
1008
1009 <ol>
1010 <li>First, create a simple C file, name it 'hello.c':
1011 <pre>
1012 #include &lt;stdio.h&gt;
1013 int main() {
1014 printf("hello world\n");
1015 return 0;
1016 }
1017 </pre>
1018
1019 <li>Next, compile the C file into a LLVM bytecode file:<p>
1020
1021 <tt>% llvmgcc hello.c -o hello</tt><p>
1022
1023 This will create two result files: <tt>hello</tt> and
1024 <tt>hello.bc</tt>. The <tt>hello.bc</tt> is the LLVM bytecode that
1025 corresponds the the compiled program and the library facilities that it
1026 required. <tt>hello</tt> is a simple shell script that runs the bytecode
1027 file with <tt>lli</tt>, making the result directly executable.<p>
1028
1029 <li>Run the program. To make sure the program ran, execute one of the
1030 following commands:<p>
John Criswell8df90e02003-06-11 20:46:40 +00001031
John Criswell85ed3612003-06-12 19:34:44 +00001032 <tt>% ./hello</tt><p>
1033
1034 or<p>
1035
1036 <tt>% lli hello.bc</tt><p>
1037
1038 <li>Use the <tt>dis</tt> utility to take a look at the LLVM assembly
1039 code:<p>
1040
1041 <tt>% dis < hello.bc | less</tt><p>
1042
1043 <li>Compile the program to native Sparc assembly using the code
Misha Brukmanc56e5822003-07-03 16:29:36 +00001044 generator (assuming you are currently on a Sparc system):<p>
John Criswell85ed3612003-06-12 19:34:44 +00001045
1046 <tt>% llc hello.bc -o hello.s</tt><p>
1047
1048 <li>Assemble the native sparc assemble file into a program:<p>
1049
1050 <tt>% /opt/SUNWspro/bin/cc -xarch=v9 hello.s -o hello.sparc</tt><p>
1051
1052 <li>Execute the native sparc program:<p>
1053
1054 <tt>% ./hello.sparc</tt><p>
1055
1056 </ol>
1057
1058
1059 <!--=====================================================================-->
John Criswell0b459202003-07-08 20:35:59 +00001060 <h2>
1061 <center><a name="problems">Common Problems</a></center>
1062 </h2>
John Criswellce760f62003-07-03 16:01:38 +00001063 <!--=====================================================================-->
1064
1065 Below are common problems and their remedies:
1066
1067 <dl compact>
1068 <dt><b>When I run configure, it finds the wrong C compiler.</b>
1069 <dd>
1070 The <tt>configure</tt> script attempts to locate first <tt>gcc</tt> and
1071 then <tt>cc</tt>, unless it finds compiler paths set in <tt>CC</tt> and
1072 <tt>CXX</tt> for the C and C++ compiler, respectively.
1073
1074 If <tt>configure</tt> finds the wrong compiler, either adjust your
1075 <tt>PATH</tt> environment variable or set <tt>CC</tt> and <tt>CXX</tt>
1076 explicitly.
1077 <p>
1078
1079 <dt><b>I compile the code, and I get some error about /localhome</b>.
1080 <dd>
1081 There are several possible causes for this. The first is that you
1082 didn't set a pathname properly when using <tt>configure</tt>, and it
1083 defaulted to a pathname that we use on our research machines.
1084 <p>
1085 Another possibility is that we hardcoded a path in our Makefiles. If
1086 you see this, please email the LLVM bug mailing list with the name of
1087 the offending Makefile and a description of what is wrong with it.
1088
1089 <dt><b>The <tt>configure</tt> script finds the right C compiler, but it
1090 uses the LLVM linker from a previous build. What do I do?</b>
1091 <dd>
1092 The <tt>configure</tt> script uses the <tt>PATH</tt> to find
1093 executables, so if it's grabbing the wrong linker/assembler/etc, there
1094 are two ways to fix it:
1095 <ol>
1096 <li>Adjust your <tt>PATH</tt> environment variable so that the
1097 correct program appears first in the <tt>PATH</tt>. This may work,
1098 but may not be convenient when you want them <i>first</i> in your
1099 path for other work.
1100 <p>
1101
1102 <li>Run <tt>configure</tt> with an alternative <tt>PATH</tt> that
1103 is correct. In a Borne compatible shell, the syntax would be:
1104 <p>
1105 <tt>PATH=<the path without the bad program> ./configure ...</tt>
1106 <p>
1107 This is still somewhat inconvenient, but it allows
1108 <tt>configure</tt> to do its work without having to adjust your
1109 <tt>PATH</tt> permanently.
1110 </ol>
John Criswell3c852b62003-08-08 22:43:39 +00001111
1112 <dt><b>I've upgraded to a new version of LLVM, and I get strange build
1113 errors.</b>
1114 <dd>
1115 Sometimes changes to the LLVM source code alters how the build system
1116 works. Changes in libtool, autoconf, or header file dependencies are
1117 especially prone to this sort of problem.
1118 <p>
1119 The best thing to try is to remove the old files and re-build. In most
1120 cases, this takes care of the problem. To do this, just type <tt>make
1121 clean</tt> and then <tt>make</tt> in the directory that fails to build.
1122 <p>
1123
John Criswellce760f62003-07-03 16:01:38 +00001124 </dl>
1125
1126 <!--=====================================================================-->
John Criswell0b459202003-07-08 20:35:59 +00001127 <h2><center><a name="links">Links</a></center></h2>
John Criswell85ed3612003-06-12 19:34:44 +00001128 <!--=====================================================================-->
1129
1130 <p>This document is just an <b>introduction</b> to how to use LLVM to do
1131 some simple things... there are many more interesting and complicated things
1132 that you can do that aren't documented here (but we'll gladly accept a patch
1133 if you want to write something up!). For more information about LLVM, check
1134 out:</p>
1135
1136 <ul>
1137 <li><a href="http://llvm.cs.uiuc.edu/">LLVM homepage</a></li>
1138 <li><a href="http://llvm.cs.uiuc.edu/doxygen/">LLVM doxygen tree</a></li>
John Criswellce760f62003-07-03 16:01:38 +00001139 <li><a href="http://llvm.cs.uiuc.edu/docs/Projects.html">Starting a Project that Uses LLVM</a></li>
John Criswell85ed3612003-06-12 19:34:44 +00001140 </ul>
1141
1142 <hr>
1143
1144 If you have any questions or run into any snags (or you have any
1145 additions...), please send an email to
1146 <a href="mailto:sabre@nondot.org">Chris Lattner</a>.</p>
1147
1148 <!-- Created: Mon Jul 1 02:29:02 CDT 2002 -->
1149 <!-- hhmts start -->
Chris Lattnera8f5de32003-08-11 18:53:14 +00001150Last modified: Mon Aug 11 13:52:22 CDT 2003
John Criswell85ed3612003-06-12 19:34:44 +00001151<!-- hhmts end -->
1152 </body>
Guochun Shif4688a82002-07-17 23:05:56 +00001153</html>