blob: 8b558d10bfa0bdd8c019d1676abb0db06017a0cb [file] [log] [blame]
Eric Christopher7dc0e572008-02-08 06:45:49 +00001<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
2 "http://www.w3.org/TR/html4/strict.dtd">
3<html>
4<head>
Benjamin Kramer665a8dc2012-01-15 15:26:07 +00005 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
Eric Christopher7dc0e572008-02-08 06:45:49 +00006 <title>Clang - Getting Started</title>
Benjamin Kramer665a8dc2012-01-15 15:26:07 +00007 <link type="text/css" rel="stylesheet" href="menu.css">
8 <link type="text/css" rel="stylesheet" href="content.css">
Eric Christopher7dc0e572008-02-08 06:45:49 +00009</head>
10<body>
11
12<!--#include virtual="menu.html.incl"-->
13
14<div id="content">
15
16<h1>Getting Started: Building and Running Clang</h1>
17
Ted Kremenek9b16da32009-03-27 16:32:57 +000018<p>This page gives you the shortest path to checking out Clang and demos a few
Eric Christopher7dc0e572008-02-08 06:45:49 +000019options. This should get you up and running with the minimum of muss and fuss.
20If you like what you see, please consider <a href="get_involved.html">getting
Chris Lattnerd2c1c602009-11-09 03:18:18 +000021involved</a> with the Clang community. If you run into problems, please file
Douglas Gregor9ff3e662010-10-07 20:20:57 +000022bugs in <a href="http://llvm.org/bugs/">LLVM Bugzilla</a>.</p>
Eric Christopher7dc0e572008-02-08 06:45:49 +000023
Daniel Dunbarfa8e11b2010-11-02 22:34:04 +000024<h2 id="download">Release Clang Versions</h2>
25
26<p>Clang has been released as part of regular LLVM releases since LLVM 2.6. You
27can download the release versions
28from <a href="http://llvm.org/releases/">http://llvm.org/releases/</a>.</p>
29
Ted Kremenek9b16da32009-03-27 16:32:57 +000030<h2 id="build">Building Clang and Working with the Code</h2>
Eric Christopher7dc0e572008-02-08 06:45:49 +000031
Eli Friedmand1e1ef32009-08-03 19:42:28 +000032<h3 id="buildNix">On Unix-like Systems</h3>
33
Ted Kremenek9b16da32009-03-27 16:32:57 +000034<p>If you would like to check out and build Clang, the current procedure is as
35follows:</p>
Eric Christopher7dc0e572008-02-08 06:45:49 +000036
37<ol>
Anton Korobeynikov1816e482009-08-06 13:00:08 +000038 <li>Get the required tools.
39 <ul>
40 <li>See
41 <a href="http://llvm.org/docs/GettingStarted.html#requirements">
42 Getting Started with the LLVM System - Requirements</a>.</li>
43 <li>Note also that Python is needed for running the test suite.
44 Get it at: <a href="http://www.python.org/download">
45 http://www.python.org/download</a></li>
46 </ul>
47
Benjamin Kramer665a8dc2012-01-15 15:26:07 +000048 <li>Checkout LLVM:
Eric Christopher7dc0e572008-02-08 06:45:49 +000049 <ul>
Chris Lattner357f7ce2009-08-20 06:17:11 +000050 <li>Change directory to where you want the llvm directory placed.</li>
Eric Christopher7dc0e572008-02-08 06:45:49 +000051 <li><tt>svn co http://llvm.org/svn/llvm-project/llvm/trunk llvm</tt></li>
Eric Christopher7dc0e572008-02-08 06:45:49 +000052 </ul>
Benjamin Kramer665a8dc2012-01-15 15:26:07 +000053 </li>
54 <li>Checkout Clang:
Eric Christopher7dc0e572008-02-08 06:45:49 +000055 <ul>
Chandler Carruth4bc2d1e2012-08-14 00:41:30 +000056 <li><tt>cd llvm/tools</tt></li>
Chris Lattner357f7ce2009-08-20 06:17:11 +000057 <li><tt>svn co http://llvm.org/svn/llvm-project/cfe/trunk clang</tt></li>
Chandler Carruth4bc2d1e2012-08-14 00:41:30 +000058 <li><tt>cd ../..</tt></li>
Chris Lattner357f7ce2009-08-20 06:17:11 +000059 </ul>
Benjamin Kramer665a8dc2012-01-15 15:26:07 +000060 </li>
Chandler Carruthe56f3a62012-08-14 07:19:09 +000061 <li>Checkout extra Clang Tools: (optional)
62 <ul>
63 <li><tt>cd llvm/tools/clang/tools</tt></li>
64 <li><tt>svn co http://llvm.org/svn/llvm-project/clang-tools-extra/trunk
65 extra</tt></li>
66 <li><tt>cd ../../../..</tt></li>
67 </ul>
68 </li>
Benjamin Kramer665a8dc2012-01-15 15:26:07 +000069 <li>Checkout Compiler-RT:
Daniel Dunbar078f8592011-12-07 03:04:42 +000070 <ul>
Chandler Carruth4bc2d1e2012-08-14 00:41:30 +000071 <li><tt>cd llvm/projects</tt></li>
Daniel Dunbar078f8592011-12-07 03:04:42 +000072 <li><tt>svn co http://llvm.org/svn/llvm-project/compiler-rt/trunk
73 compiler-rt</tt></li>
Chandler Carruth4bc2d1e2012-08-14 00:41:30 +000074 <li><tt>cd ../..</tt></li>
Daniel Dunbar078f8592011-12-07 03:04:42 +000075 </ul>
Benjamin Kramer665a8dc2012-01-15 15:26:07 +000076 </li>
77 <li>Build LLVM and Clang:
Chris Lattner357f7ce2009-08-20 06:17:11 +000078 <ul>
Rafael Espindolafa5fa972010-10-29 22:05:17 +000079 <li><tt>mkdir build</tt> (for building without polluting the source dir)
80 </li>
81 <li><tt>cd build</tt></li>
82 <li><tt>../llvm/configure</tt></li>
Chris Lattner357f7ce2009-08-20 06:17:11 +000083 <li><tt>make</tt></li>
84 <li>This builds both LLVM and Clang for debug mode.</li>
85 <li>Note: For subsequent Clang development, you can just do make at the
86 clang directory level.</li>
Benjamin Kramer665a8dc2012-01-15 15:26:07 +000087 <li>It is also possible to use CMake instead of the makefiles. With CMake
NAKAMURA Takumi831fb8d2012-11-27 23:34:28 +000088 it is possible to generate project files for several IDEs: Xcode, Eclipse
Benjamin Kramer665a8dc2012-01-15 15:26:07 +000089 CDT4, CodeBlocks, Qt-Creator (use the CodeBlocks generator), KDevelop3.</li>
Eric Christopher7dc0e572008-02-08 06:45:49 +000090 </ul>
Benjamin Kramer665a8dc2012-01-15 15:26:07 +000091 </li>
Chris Lattner78781782010-05-06 21:57:57 +000092
Ted Kremenek9b16da32009-03-27 16:32:57 +000093 <li>If you intend to work on Clang C++ support, you may need to tell it how
Chandler Carruthabccc1f2012-05-16 08:18:58 +000094 to find your C++ standard library headers. In general, Clang will detect
95 the best version of libstdc++ headers available and use them - it will
96 look both for system installations of libstdc++ as well as installations
97 adjacent to Clang itself. If your configuration fits neither of these
98 scenarios, you can use the <tt>--with-gcc-toolchain</tt> configure option
99 to tell Clang where the gcc containing the desired libstdc++ is installed.
Benjamin Kramer665a8dc2012-01-15 15:26:07 +0000100 </li>
101 <li>Try it out (assuming you add llvm/Debug+Asserts/bin to your path):
Eric Christopher7dc0e572008-02-08 06:45:49 +0000102 <ul>
Daniel Dunbardd63b282009-12-11 23:04:35 +0000103 <li><tt>clang --help</tt></li>
104 <li><tt>clang file.c -fsyntax-only</tt> (check for correctness)</li>
105 <li><tt>clang file.c -S -emit-llvm -o -</tt> (print out unoptimized llvm code)</li>
106 <li><tt>clang file.c -S -emit-llvm -o - -O3</tt></li>
107 <li><tt>clang file.c -S -O3 -o -</tt> (output native machine code)</li>
Eric Christopher7dc0e572008-02-08 06:45:49 +0000108 </ul>
Benjamin Kramer665a8dc2012-01-15 15:26:07 +0000109 </li>
Eric Christopher7dc0e572008-02-08 06:45:49 +0000110</ol>
111
Ted Kremenek9b16da32009-03-27 16:32:57 +0000112<p>Note that the C front-end uses LLVM, but does not depend on llvm-gcc. If you
113encounter problems with building Clang, make sure you have the latest SVN
114version of LLVM. LLVM contains support libraries for Clang that will be updated
115as well as development on Clang progresses.</p>
Ted Kremenek675a9ba2008-02-08 07:32:26 +0000116
Ted Kremenek9b16da32009-03-27 16:32:57 +0000117<h3>Simultaneously Building Clang and LLVM:</h3>
Eric Christopher562b4f32008-02-08 07:10:48 +0000118
Ted Kremenek9b16da32009-03-27 16:32:57 +0000119<p>Once you have checked out Clang into the llvm source tree it will build along
120with the rest of <tt>llvm</tt>. To build all of LLVM and Clang together all at
121once simply run <tt>make</tt> from the root LLVM directory.</p>
122
123<p><em>Note:</em> Observe that Clang is technically part of a separate
124Subversion repository. As mentioned above, the latest Clang sources are tied to
125the latest sources in the LLVM tree. You can update your toplevel LLVM project
126and all (possibly unrelated) projects inside it with <tt><b>make
127update</b></tt>. This will run <tt>svn update</tt> on all subdirectories related
128to subversion. </p>
Eric Christopher7dc0e572008-02-08 06:45:49 +0000129
Eli Friedmand1e1ef32009-08-03 19:42:28 +0000130<h3 id="buildWindows">Using Visual Studio</h3>
131
132<p>The following details setting up for and building Clang on Windows using
133Visual Studio:</p>
134
135<ol>
Benjamin Kramer665a8dc2012-01-15 15:26:07 +0000136 <li>Get the required tools:
Eli Friedmand1e1ef32009-08-03 19:42:28 +0000137 <ul>
138 <li><b>Subversion</b>. Source code control program. Get it from:
139 <a href="http://subversion.tigris.org/getting.html">
140 http://subversion.tigris.org/getting.html</a></li>
NAKAMURA Takumi0dffb7b2012-11-27 23:34:08 +0000141 <li><b>CMake</b>. This is used for generating Visual Studio solution and
Eli Friedmand1e1ef32009-08-03 19:42:28 +0000142 project files. Get it from:
143 <a href="http://www.cmake.org/cmake/resources/software.html">
144 http://www.cmake.org/cmake/resources/software.html</a></li>
Chandler Carruth245a5382011-11-16 19:29:07 +0000145 <li><b>Visual Studio 2008 or 2010</b></li>
Chris Lattner357f7ce2009-08-20 06:17:11 +0000146 <li><b>Python</b>. This is needed only if you will be running the tests
Eli Friedmand1e1ef32009-08-03 19:42:28 +0000147 (which is essential, if you will be developing for clang).
148 Get it from:
NAKAMURA Takumicc8770a2011-03-27 02:04:21 +0000149 <a href="http://www.python.org/download/">
150 http://www.python.org/download/</a></li>
Chris Lattner357f7ce2009-08-20 06:17:11 +0000151 <li><b>GnuWin32 tools</b>
152 These are also necessary for running the tests.
153 (Note that the grep from MSYS or Cygwin doesn't work with the tests
154 because of embedded double-quotes in the search strings. The GNU
155 grep does work in this case.)
NAKAMURA Takumicc8770a2011-03-27 02:04:21 +0000156 Get them from <a href="http://getgnuwin32.sourceforge.net/">
157 http://getgnuwin32.sourceforge.net/</a>.</li>
Eli Friedmand1e1ef32009-08-03 19:42:28 +0000158 </ul>
Benjamin Kramer665a8dc2012-01-15 15:26:07 +0000159 </li>
Eli Friedmand1e1ef32009-08-03 19:42:28 +0000160
Benjamin Kramer665a8dc2012-01-15 15:26:07 +0000161 <li>Checkout LLVM:
Eli Friedmand1e1ef32009-08-03 19:42:28 +0000162 <ul>
163 <li><tt>svn co http://llvm.org/svn/llvm-project/llvm/trunk llvm</tt></li>
164 </ul>
Benjamin Kramer665a8dc2012-01-15 15:26:07 +0000165 </li>
166 <li>Checkout Clang:
Eli Friedmand1e1ef32009-08-03 19:42:28 +0000167 <ul>
168 <li><tt>cd llvm\tools</tt>
169 <li><tt>svn co http://llvm.org/svn/llvm-project/cfe/trunk clang</tt></li>
170 </ul>
Benjamin Kramer665a8dc2012-01-15 15:26:07 +0000171 </li>
NAKAMURA Takumi0dffb7b2012-11-27 23:34:08 +0000172 <li>Run CMake to generate the Visual Studio solution and project files:
Eli Friedmand1e1ef32009-08-03 19:42:28 +0000173 <ul>
Michael J. Spencer0de57862010-12-16 22:01:14 +0000174 <li><tt>cd ..\..</tt> (back to where you started)</li>
175 <li><tt>mkdir build</tt> (for building without polluting the source dir)</li>
176 <li><tt>cd build</tt></li>
Chandler Carruth245a5382011-11-16 19:29:07 +0000177 <li>If you are using Visual Studio 2008: <tt>cmake -G "Visual Studio 9 2008" ..\llvm</tt></li>
Michael J. Spencer0de57862010-12-16 22:01:14 +0000178 <li>Or if you are using Visual Studio 2010: <tt>cmake -G "Visual Studio 10" ..\llvm</tt></li>
NAKAMURA Takumi0dffb7b2012-11-27 23:34:08 +0000179 <li>By default, CMake will target LLVM to X86. If you want all targets
John Thompson13eb5652011-04-06 18:22:12 +0000180 (needed if you want to run the LLVM tests), add the <tt>-DLLVM_TARGETS_TO_BUILD=all</tt> option to the
NAKAMURA Takumi0dffb7b2012-11-27 23:34:08 +0000181 CMake command line. Or specify a target from the LLVM_TARGETS_TO_BUILD
John Thompson13eb5652011-04-06 18:22:12 +0000182 definition in CMakeLists.txt.</li>
183 <li>See the <a href="http://www.llvm.org/docs/CMake.html">LLVM CMake guide</a> for
NAKAMURA Takumi0dffb7b2012-11-27 23:34:08 +0000184 more information on other configuration options for CMake.</li>
Eli Friedmand1e1ef32009-08-03 19:42:28 +0000185 <li>The above, if successful, will have created an LLVM.sln file in the
NAKAMURA Takumi542c7622011-07-25 12:40:26 +0000186 <tt>build</tt> directory.
Eli Friedmand1e1ef32009-08-03 19:42:28 +0000187 </ul>
Benjamin Kramer665a8dc2012-01-15 15:26:07 +0000188 </li>
189 <li>Build Clang:
Eli Friedmand1e1ef32009-08-03 19:42:28 +0000190 <ul>
191 <li>Open LLVM.sln in Visual Studio.</li>
Daniel Dunbardd63b282009-12-11 23:04:35 +0000192 <li>Build the "clang" project for just the compiler driver and front end, or
193 the "ALL_BUILD" project to build everything, including tools.</li>
Eli Friedmand1e1ef32009-08-03 19:42:28 +0000194 </ul>
Benjamin Kramer665a8dc2012-01-15 15:26:07 +0000195 </li>
Eli Friedmand1e1ef32009-08-03 19:42:28 +0000196 <li>Try it out (assuming you added llvm/debug/bin to your path). (See the
197 running examples from above.)</li>
198 <li>See <a href="hacking.html#testingWindows">
199 Hacking on clang - Testing using Visual Studio on Windows</a> for information
200 on running regression tests on Windows.</li>
201</ol>
202
203<p>Note that once you have checked out both llvm and clang, to synchronize
204to the latest code base, use the <tt>svn update</tt> command in both the
205llvm and llvm\tools\clang directories, as they are separate repositories.</p>
206
Benjamin Kramer665a8dc2012-01-15 15:26:07 +0000207<h2 id="driver">Clang Compiler Driver (Drop-in Substitute for GCC)</h2>
Ted Kremenek9b16da32009-03-27 16:32:57 +0000208
Daniel Dunbardd63b282009-12-11 23:04:35 +0000209<p>The <tt>clang</tt> tool is the compiler driver and front-end, which is
210designed to be a drop-in replacement for the <tt>gcc</tt> command. Here are
211some examples of how to use the high-level driver:
Ted Kremenek9b16da32009-03-27 16:32:57 +0000212</p>
213
214<pre class="code">
215$ <b>cat t.c</b>
216#include &lt;stdio.h&gt;
217int main(int argc, char **argv) { printf("hello world\n"); }
218$ <b>clang t.c</b>
219$ <b>./a.out</b>
220hello world
221</pre>
222
Chris Lattner63d423d2009-11-09 03:21:02 +0000223<p>The 'clang' driver is designed to work as closely to GCC as possible to
224 maximize portability. The only major difference between the two is that
225 Clang defaults to gnu99 mode while GCC defaults to gnu89 mode. If you see
Chris Lattnerd73fef62009-11-09 04:04:07 +0000226 weird link-time errors relating to inline functions, try passing -std=gnu89
Chris Lattner63d423d2009-11-09 03:21:02 +0000227 to clang.</p>
228
Ted Kremenek9b16da32009-03-27 16:32:57 +0000229<h2>Examples of using Clang</h2>
230
Eric Christopher7dc0e572008-02-08 06:45:49 +0000231<!-- Thanks to
232 http://shiflett.org/blog/2006/oct/formatting-and-highlighting-php-code-listings
233Site suggested using pre in CSS, but doesn't work in IE, so went for the <pre>
234tag. -->
235
236<pre class="code">
237$ <b>cat ~/t.c</b>
238typedef float V __attribute__((vector_size(16)));
239V foo(V a, V b) { return a+b*a; }
240</pre>
241
242
Ted Kremenek35f29c52008-06-17 13:48:36 +0000243<h3>Preprocessing:</h3>
Eric Christopher7dc0e572008-02-08 06:45:49 +0000244
245<pre class="code">
246$ <b>clang ~/t.c -E</b>
247# 1 "/Users/sabre/t.c" 1
248
249typedef float V __attribute__((vector_size(16)));
250
251V foo(V a, V b) { return a+b*a; }
252</pre>
253
254
Ted Kremenek35f29c52008-06-17 13:48:36 +0000255<h3>Type checking:</h3>
Eric Christopher7dc0e572008-02-08 06:45:49 +0000256
257<pre class="code">
258$ <b>clang -fsyntax-only ~/t.c</b>
259</pre>
260
261
Ted Kremenek35f29c52008-06-17 13:48:36 +0000262<h3>GCC options:</h3>
Eric Christopher7dc0e572008-02-08 06:45:49 +0000263
264<pre class="code">
265$ <b>clang -fsyntax-only ~/t.c -pedantic</b>
Benjamin Kramer665a8dc2012-01-15 15:26:07 +0000266/Users/sabre/t.c:2:17: <span style="color:magenta">warning:</span> extension used
267<span style="color:darkgreen">typedef float V __attribute__((vector_size(16)));</span>
268<span style="color:blue"> ^</span>
Eric Christopher7dc0e572008-02-08 06:45:49 +00002691 diagnostic generated.
270</pre>
271
272
Ted Kremenek35f29c52008-06-17 13:48:36 +0000273<h3>Pretty printing from the AST:</h3>
Eric Christopher7dc0e572008-02-08 06:45:49 +0000274
Sylvestre Ledrubed28ac2012-07-23 08:59:39 +0000275<p>Note, the <tt>-cc1</tt> argument indicates the compiler front-end, and
Daniel Dunbardd63b282009-12-11 23:04:35 +0000276not the driver, should be run. The compiler front-end has several additional
277Clang specific features which are not exposed through the GCC compatible driver
278interface.</p>
279
Eric Christopher7dc0e572008-02-08 06:45:49 +0000280<pre class="code">
Daniel Dunbardd63b282009-12-11 23:04:35 +0000281$ <b>clang -cc1 ~/t.c -ast-print</b>
Eric Christopher7dc0e572008-02-08 06:45:49 +0000282typedef float V __attribute__(( vector_size(16) ));
283V foo(V a, V b) {
284 return a + b * a;
285}
286</pre>
287
288
Ted Kremenek35f29c52008-06-17 13:48:36 +0000289<h3>Code generation with LLVM:</h3>
Eric Christopher7dc0e572008-02-08 06:45:49 +0000290
291<pre class="code">
Daniel Dunbardd63b282009-12-11 23:04:35 +0000292$ <b>clang ~/t.c -S -emit-llvm -o -</b>
Eric Christopher7dc0e572008-02-08 06:45:49 +0000293define &lt;4 x float&gt; @foo(&lt;4 x float&gt; %a, &lt;4 x float&gt; %b) {
294entry:
295 %mul = mul &lt;4 x float&gt; %b, %a
296 %add = add &lt;4 x float&gt; %mul, %a
297 ret &lt;4 x float&gt; %add
298}
Daniel Dunbardd63b282009-12-11 23:04:35 +0000299$ <b>clang -fomit-frame-pointer -O3 -S -o - t.c</b> <i># On x86_64</i>
300...
Eric Christopher7dc0e572008-02-08 06:45:49 +0000301_foo:
Daniel Dunbardd63b282009-12-11 23:04:35 +0000302Leh_func_begin1:
303 mulps %xmm0, %xmm1
304 addps %xmm1, %xmm0
305 ret
306Leh_func_end1:
Eric Christopher7dc0e572008-02-08 06:45:49 +0000307</pre>
308
Eric Christopher7dc0e572008-02-08 06:45:49 +0000309</div>
310</body>
311</html>