1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
2 "http://www.w3.org/TR/html4/strict.dtd">
5 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
6 <link rel="stylesheet" href="llvm.css" type="text/css" media="screen">
7 <title>Building the LLVM GCC Front-End</title>
11 <div class="doc_title">
12 Building the LLVM GCC Front-End
16 <li><a href="#instructions">Building llvm-gcc from Source</a></li>
17 <li><a href="#license">License Information</a></li>
20 <div class="doc_author">
21 <p>Written by the LLVM Team</p>
24 <!-- *********************************************************************** -->
25 <div class="doc_section">
26 <a name="instructions">Building llvm-gcc from Source</a>
28 <!-- *********************************************************************** -->
30 <div class="doc_text">
32 <p>This section describes how to acquire and build llvm-gcc 4.0 and 4.2, which are
33 based on the GCC 4.0.1/4.2.1 front-ends respectively. Both front-ends support C,
34 C++, Objective-C and Objective-C++. The 4.2 front-end also supports Ada and
35 Fortran to some extent. Note that the instructions for building these front-ends
36 are completely different (and much easier!) than those for building llvm-gcc3 in
40 <li><p>Retrieve the appropriate llvm-gcc4.x-y.z.source.tar.gz archive from the
41 <a href="http://llvm.org/releases/">llvm web site</a>.</p>
43 <p>It is also possible to download the sources of the llvm-gcc front end
44 from a read-only mirror using subversion. To check out the 4.0 code
45 for first time use:</p>
47 <div class="doc_code">
49 svn co http://llvm.org/svn/llvm-project/llvm-gcc-4.0/trunk <i>dst-directory</i>
53 <p>To check out the 4.2 code use:</p>
55 <div class="doc_code">
57 svn co http://llvm.org/svn/llvm-project/llvm-gcc-4.2/trunk <i>dst-directory</i>
61 <p>After that, the code can be be updated in the destination directory
64 <div class="doc_code">
68 <p>The mirror is brought up to date every evening.</p></li>
70 <li>Follow the directions in the top-level <tt>README.LLVM</tt> file for
71 up-to-date instructions on how to build llvm-gcc. See below for building
72 with support for Ada or Fortran.
77 <!-- *********************************************************************** -->
78 <div class="doc_section">
79 <a name="license">Building the Ada front-end</a>
82 <div class="doc_text">
83 <p>Building with support for Ada amounts to following the directions in the
84 top-level <tt>README.LLVM</tt> file, adding ",ada" to EXTRALANGS, for example:
85 <tt>EXTRALANGS=,ada</tt></p>
87 <p>There are some complications however:</p>
90 <li><p>The only platform for which the Ada front-end is known to build is
91 32 bit intel x86 running linux. It is unlikely to build for other
92 systems without some work.</p></li>
93 <li><p>The build requires having a compiler that supports Ada, C and C++.
94 The Ada front-end is written in Ada so an Ada compiler is needed to
95 build it. Appropriate Ada compilers are gcc-4.2 (or earlier) or the
96 <a href="http://libre.adacore.com/">2006 GNAT GPL Edition</a>
97 (or earlier). As a general rule, the Ada compiler used for the
98 build must not be more recent than the Ada compiler it is building.
99 This is why the build fails with gcc-4.3 and the 2007 GNAT GPL Edition.
100 The LLVM parts of llvm-gcc are written in C++ so a C++ compiler is
101 needed to build them. The rest of gcc is written in C.
102 Some linux distributions provide a version of gcc that supports all
103 three languages (the Ada part often comes as an add-on package to
104 the rest of gcc). Otherwise it is possible to combine two versions
105 of gcc, one that supports Ada and C (such as the
106 <a href="http://libre.adacore.com/">2006 GNAT GPL Edition</a>)
107 and another which supports C++, see below.</p></li>
108 <li><p>Because the Ada front-end is experimental, it is wise to build the
109 compiler with checking enabled. This causes it to run slower, but
110 helps catch mistakes in the compiler (please report any problems using
111 <a href="http://llvm.org/bugs">LLVM bugzilla</a>).</p></li>
114 <p>Supposing appropriate compilers are available, llvm-gcc with Ada support can
115 be built on an x86-32 linux box using the following recipe:</p>
118 <li><p>Download the <a href="http://llvm.org/releases/download.html">LLVM source</a>
121 <div class="doc_code">
122 <pre>wget http://llvm.org/releases/2.2/llvm-2.2.tar.gz
123 tar xzf llvm-2.2.tar.gz
124 mv llvm-2.2 llvm</pre>
127 <p>or <a href="GettingStarted.html#checkout">check out the
128 latest version from subversion</a>:</p>
130 <div class="doc_code">
131 <pre>svn co http://llvm.org/svn/llvm-project/llvm/trunk llvm</pre>
136 <a href="http://llvm.org/releases/download.html">llvm-gcc-4.2 source</a>
139 <div class="doc_code">
140 <pre>wget http://llvm.org/releases/2.2/llvm-gcc4.2-2.2.source.tar.gz
141 tar xzf llvm-gcc4.2-2.2.source.tar.gz
142 mv llvm-gcc4.2-2.2.source llvm-gcc-4.2</pre>
145 <p>or <a href="GettingStarted.html#checkout">check out the
146 latest version from subversion</a>:</p>
148 <div class="doc_code">
149 <pre>svn co http://llvm.org/svn/llvm-project/llvm-gcc-4.2/trunk llvm-gcc-4.2</pre>
153 <li><p>Make a build directory <tt>llvm-objects</tt> for llvm and make it the
154 current directory:</p>
156 <div class="doc_code">
157 <pre>mkdir llvm-objects
158 cd llvm-objects</pre>
162 <li><p>Configure LLVM (here it is configured to install into <tt>/usr/local</tt>):</p>
164 <div class="doc_code">
165 <pre>../llvm/configure --prefix=<b>/usr/local</b></pre>
168 <p>If you have a multi-compiler setup and the C++ compiler is not the
169 default, then you can configure like this:</p>
171 <div class="doc_code">
172 <pre>CXX=<b>PATH_TO_C++_COMPILER</b> ../llvm/configure --prefix=<b>/usr/local</b></pre>
176 <li><p>Build LLVM with checking enabled (use <tt>ENABLE_OPTIMIZED=1</tt> to
177 build without checking):</p>
179 <div class="doc_code">
180 <pre>make ENABLE_OPTIMIZED=0</pre>
184 <li><p>Install LLVM (optional):</p>
186 <div class="doc_code">
187 <pre>make install</pre>
191 <li><p>Make a build directory <tt>llvm-gcc-4.2-objects</tt> for llvm-gcc and make it the
192 current directory:</p>
194 <div class="doc_code">
197 mkdir llvm-gcc-4.2-objects
198 cd llvm-gcc-4.2-objects</pre>
202 <li><p>Configure llvm-gcc (here it is configured to install into <tt>/usr/local</tt>).
203 The <tt>--enable-checking</tt> flag turns on sanity checks inside the compiler.
204 If you omit it then LLVM must be built with <tt>make ENABLE_OPTIMIZED=1</tt>.
205 Additional languages can be appended to the --enable-languages switch,
206 for example <tt>--enable-languages=ada,c,c++</tt>.</p>
208 <div class="doc_code">
209 <pre>../llvm-gcc-4.2/configure --prefix=<b>/usr/local</b> --enable-languages=ada,c --enable-checking --enable-llvm=$PWD/../llvm-objects --disable-shared --disable-bootstrap --disable-multilib</pre>
212 <p>If you have a multi-compiler setup, then you can configure like this:</p>
213 <div class="doc_code">
216 export CC=<b>PATH_TO_C_AND_ADA_COMPILER</b>
217 export CXX=<b>PATH_TO_C++_COMPILER</b>
218 ../llvm-gcc-4.2/configure --prefix=<b>/usr/local</b> --enable-languages=ada,c --enable-checking --enable-llvm=$PWD/../llvm-objects --disable-shared --disable-bootstrap --disable-multilib</pre>
222 <li><p>Build and install the compiler:</p>
224 <div class="doc_code">
233 <!-- *********************************************************************** -->
234 <div class="doc_section">
235 <a name="license">Building the Fortran front-end</a>
238 <div class="doc_text">
240 To build with support for Fortran, follow the directions in the top-level
241 <tt>README.LLVM</tt> file, adding ",fortran" to EXTRALANGS, for example:</p>
243 <div class="doc_code">
251 <!-- *********************************************************************** -->
252 <div class="doc_section">
253 <a name="license">License Information</a>
256 <div class="doc_text">
258 The LLVM GCC frontend is licensed to you under the GNU General Public License
259 and the GNU Lesser General Public License. Please see the files COPYING and
260 COPYING.LIB for more details.
264 More information is <a href="FAQ.html#license">available in the FAQ</a>.
268 <!-- *********************************************************************** -->
272 <a href="http://jigsaw.w3.org/css-validator/check/referer"><img
273 src="http://jigsaw.w3.org/css-validator/images/vcss" alt="Valid CSS!"></a>
274 <a href="http://validator.w3.org/check/referer"><img
275 src="http://www.w3.org/Icons/valid-html401" alt="Valid HTML 4.01!"></a>
277 <a href="http://llvm.org">LLVM Compiler Infrastructure</a><br>
278 Last modified: $Date$