1==================================== 2Getting Started with the LLVM System 3==================================== 4 5.. contents:: 6 :local: 7 8Overview 9======== 10 11Welcome to LLVM! In order to get started, you first need to know some basic 12information. 13 14First, LLVM comes in three pieces. The first piece is the LLVM suite. This 15contains all of the tools, libraries, and header files needed to use LLVM. It 16contains an assembler, disassembler, bitcode analyzer and bitcode optimizer. It 17also contains basic regression tests that can be used to test the LLVM tools and 18the Clang front end. 19 20The second piece is the `Clang <http://clang.llvm.org/>`_ front end. This 21component compiles C, C++, Objective C, and Objective C++ code into LLVM 22bitcode. Once compiled into LLVM bitcode, a program can be manipulated with the 23LLVM tools from the LLVM suite. 24 25There is a third, optional piece called Test Suite. It is a suite of programs 26with a testing harness that can be used to further test LLVM's functionality 27and performance. 28 29Getting Started Quickly (A Summary) 30=================================== 31 32The LLVM Getting Started documentation may be out of date. So, the `Clang 33Getting Started <http://clang.llvm.org/get_started.html>`_ page might also be a 34good place to start. 35 36Here's the short story for getting up and running quickly with LLVM: 37 38#. Read the documentation. 39#. Read the documentation. 40#. Remember that you were warned twice about reading the documentation. 41 42 * In particular, the *relative paths specified are important*. 43 44#. Checkout LLVM: 45 46 * ``cd where-you-want-llvm-to-live`` 47 * ``svn co http://llvm.org/svn/llvm-project/llvm/trunk llvm`` 48 49#. Checkout Clang: 50 51 * ``cd where-you-want-llvm-to-live`` 52 * ``cd llvm/tools`` 53 * ``svn co http://llvm.org/svn/llvm-project/cfe/trunk clang`` 54 55#. Checkout Compiler-RT (required to build the sanitizers) **[Optional]**: 56 57 * ``cd where-you-want-llvm-to-live`` 58 * ``cd llvm/projects`` 59 * ``svn co http://llvm.org/svn/llvm-project/compiler-rt/trunk compiler-rt`` 60 61#. Checkout Libomp (required for OpenMP support) **[Optional]**: 62 63 * ``cd where-you-want-llvm-to-live`` 64 * ``cd llvm/projects`` 65 * ``svn co http://llvm.org/svn/llvm-project/openmp/trunk openmp`` 66 67#. Checkout libcxx and libcxxabi **[Optional]**: 68 69 * ``cd where-you-want-llvm-to-live`` 70 * ``cd llvm/projects`` 71 * ``svn co http://llvm.org/svn/llvm-project/libcxx/trunk libcxx`` 72 * ``svn co http://llvm.org/svn/llvm-project/libcxxabi/trunk libcxxabi`` 73 74#. Get the Test Suite Source Code **[Optional]** 75 76 * ``cd where-you-want-llvm-to-live`` 77 * ``cd llvm/projects`` 78 * ``svn co http://llvm.org/svn/llvm-project/test-suite/trunk test-suite`` 79 80#. Configure and build LLVM and Clang: 81 82 *Warning:* Make sure you've checked out *all of* the source code 83 before trying to configure with cmake. cmake does not pickup newly 84 added source directories in incremental builds. 85 86 The build uses `CMake <CMake.html>`_. LLVM requires CMake 3.4.3 to build. It 87 is generally recommended to use a recent CMake, especially if you're 88 generating Ninja build files. This is because the CMake project is constantly 89 improving the quality of the generators, and the Ninja generator gets a lot 90 of attention. 91 92 * ``cd where you want to build llvm`` 93 * ``mkdir build`` 94 * ``cd build`` 95 * ``cmake -G <generator> [options] <path to llvm sources>`` 96 97 Some common generators are: 98 99 * ``Unix Makefiles`` --- for generating make-compatible parallel makefiles. 100 * ``Ninja`` --- for generating `Ninja <https://ninja-build.org>`_ 101 build files. Most llvm developers use Ninja. 102 * ``Visual Studio`` --- for generating Visual Studio projects and 103 solutions. 104 * ``Xcode`` --- for generating Xcode projects. 105 106 Some Common options: 107 108 * ``-DCMAKE_INSTALL_PREFIX=directory`` --- Specify for *directory* the full 109 pathname of where you want the LLVM tools and libraries to be installed 110 (default ``/usr/local``). 111 112 * ``-DCMAKE_BUILD_TYPE=type`` --- Valid options for *type* are Debug, 113 Release, RelWithDebInfo, and MinSizeRel. Default is Debug. 114 115 * ``-DLLVM_ENABLE_ASSERTIONS=On`` --- Compile with assertion checks enabled 116 (default is Yes for Debug builds, No for all other build types). 117 118 * Run your build tool of choice! 119 120 * The default target (i.e. ``make``) will build all of LLVM 121 122 * The ``check-all`` target (i.e. ``make check-all``) will run the 123 regression tests to ensure everything is in working order. 124 125 * CMake will generate build targets for each tool and library, and most 126 LLVM sub-projects generate their own ``check-<project>`` target. 127 128 * Running a serial build will be *slow*. Make sure you run a 129 parallel build; for ``make``, use ``make -j``. 130 131 * For more information see `CMake <CMake.html>`_ 132 133 * If you get an "internal compiler error (ICE)" or test failures, see 134 `below`_. 135 136Consult the `Getting Started with LLVM`_ section for detailed information on 137configuring and compiling LLVM. Go to `Directory Layout`_ to learn about the 138layout of the source code tree. 139 140Requirements 141============ 142 143Before you begin to use the LLVM system, review the requirements given below. 144This may save you some trouble by knowing ahead of time what hardware and 145software you will need. 146 147Hardware 148-------- 149 150LLVM is known to work on the following host platforms: 151 152================== ===================== ============= 153OS Arch Compilers 154================== ===================== ============= 155Linux x86\ :sup:`1` GCC, Clang 156Linux amd64 GCC, Clang 157Linux ARM\ :sup:`4` GCC, Clang 158Linux PowerPC GCC, Clang 159Solaris V9 (Ultrasparc) GCC 160FreeBSD x86\ :sup:`1` GCC, Clang 161FreeBSD amd64 GCC, Clang 162MacOS X\ :sup:`2` PowerPC GCC 163MacOS X x86 GCC, Clang 164Cygwin/Win32 x86\ :sup:`1, 3` GCC 165Windows x86\ :sup:`1` Visual Studio 166Windows x64 x86-64 Visual Studio 167================== ===================== ============= 168 169.. note:: 170 171 #. Code generation supported for Pentium processors and up 172 #. Code generation supported for 32-bit ABI only 173 #. To use LLVM modules on Win32-based system, you may configure LLVM 174 with ``-DBUILD_SHARED_LIBS=On``. 175 #. MCJIT not working well pre-v7, old JIT engine not supported any more. 176 177Note that Debug builds require a lot of time and disk space. An LLVM-only build 178will need about 1-3 GB of space. A full build of LLVM and Clang will need around 17915-20 GB of disk space. The exact space requirements will vary by system. (It 180is so large because of all the debugging information and the fact that the 181libraries are statically linked into multiple tools). 182 183If you you are space-constrained, you can build only selected tools or only 184selected targets. The Release build requires considerably less space. 185 186The LLVM suite *may* compile on other platforms, but it is not guaranteed to do 187so. If compilation is successful, the LLVM utilities should be able to 188assemble, disassemble, analyze, and optimize LLVM bitcode. Code generation 189should work as well, although the generated native code may not work on your 190platform. 191 192Software 193-------- 194 195Compiling LLVM requires that you have several software packages installed. The 196table below lists those required packages. The Package column is the usual name 197for the software package that LLVM depends on. The Version column provides 198"known to work" versions of the package. The Notes column describes how LLVM 199uses the package and provides other details. 200 201=========================================================== ============ ========================================== 202Package Version Notes 203=========================================================== ============ ========================================== 204`GNU Make <http://savannah.gnu.org/projects/make>`_ 3.79, 3.79.1 Makefile/build processor 205`GCC <http://gcc.gnu.org/>`_ >=4.8.0 C/C++ compiler\ :sup:`1` 206`python <http://www.python.org/>`_ >=2.7 Automated test suite\ :sup:`2` 207`zlib <http://zlib.net>`_ >=1.2.3.4 Compression library\ :sup:`3` 208=========================================================== ============ ========================================== 209 210.. note:: 211 212 #. Only the C and C++ languages are needed so there's no need to build the 213 other languages for LLVM's purposes. See `below` for specific version 214 info. 215 #. Only needed if you want to run the automated test suite in the 216 ``llvm/test`` directory. 217 #. Optional, adds compression / uncompression capabilities to selected LLVM 218 tools. 219 220Additionally, your compilation host is expected to have the usual plethora of 221Unix utilities. Specifically: 222 223* **ar** --- archive library builder 224* **bzip2** --- bzip2 command for distribution generation 225* **bunzip2** --- bunzip2 command for distribution checking 226* **chmod** --- change permissions on a file 227* **cat** --- output concatenation utility 228* **cp** --- copy files 229* **date** --- print the current date/time 230* **echo** --- print to standard output 231* **egrep** --- extended regular expression search utility 232* **find** --- find files/dirs in a file system 233* **grep** --- regular expression search utility 234* **gzip** --- gzip command for distribution generation 235* **gunzip** --- gunzip command for distribution checking 236* **install** --- install directories/files 237* **mkdir** --- create a directory 238* **mv** --- move (rename) files 239* **ranlib** --- symbol table builder for archive libraries 240* **rm** --- remove (delete) files and directories 241* **sed** --- stream editor for transforming output 242* **sh** --- Bourne shell for make build scripts 243* **tar** --- tape archive for distribution generation 244* **test** --- test things in file system 245* **unzip** --- unzip command for distribution checking 246* **zip** --- zip command for distribution generation 247 248.. _below: 249.. _check here: 250 251Host C++ Toolchain, both Compiler and Standard Library 252------------------------------------------------------ 253 254LLVM is very demanding of the host C++ compiler, and as such tends to expose 255bugs in the compiler. We are also planning to follow improvements and 256developments in the C++ language and library reasonably closely. As such, we 257require a modern host C++ toolchain, both compiler and standard library, in 258order to build LLVM. 259 260For the most popular host toolchains we check for specific minimum versions in 261our build systems: 262 263* Clang 3.1 264* GCC 4.8 265* Visual Studio 2015 (Update 3) 266 267Anything older than these toolchains *may* work, but will require forcing the 268build system with a special option and is not really a supported host platform. 269Also note that older versions of these compilers have often crashed or 270miscompiled LLVM. 271 272For less widely used host toolchains such as ICC or xlC, be aware that a very 273recent version may be required to support all of the C++ features used in LLVM. 274 275We track certain versions of software that are *known* to fail when used as 276part of the host toolchain. These even include linkers at times. 277 278**GNU ld 2.16.X**. Some 2.16.X versions of the ld linker will produce very long 279warning messages complaining that some "``.gnu.linkonce.t.*``" symbol was 280defined in a discarded section. You can safely ignore these messages as they are 281erroneous and the linkage is correct. These messages disappear using ld 2.17. 282 283**GNU binutils 2.17**: Binutils 2.17 contains `a bug 284<http://sourceware.org/bugzilla/show_bug.cgi?id=3111>`__ which causes huge link 285times (minutes instead of seconds) when building LLVM. We recommend upgrading 286to a newer version (2.17.50.0.4 or later). 287 288**GNU Binutils 2.19.1 Gold**: This version of Gold contained `a bug 289<http://sourceware.org/bugzilla/show_bug.cgi?id=9836>`__ which causes 290intermittent failures when building LLVM with position independent code. The 291symptom is an error about cyclic dependencies. We recommend upgrading to a 292newer version of Gold. 293 294Getting a Modern Host C++ Toolchain 295^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 296 297This section mostly applies to Linux and older BSDs. On Mac OS X, you should 298have a sufficiently modern Xcode, or you will likely need to upgrade until you 299do. Windows does not have a "system compiler", so you must install either Visual 300Studio 2015 or a recent version of mingw64. FreeBSD 10.0 and newer have a modern 301Clang as the system compiler. 302 303However, some Linux distributions and some other or older BSDs sometimes have 304extremely old versions of GCC. These steps attempt to help you upgrade you 305compiler even on such a system. However, if at all possible, we encourage you 306to use a recent version of a distribution with a modern system compiler that 307meets these requirements. Note that it is tempting to to install a prior 308version of Clang and libc++ to be the host compiler, however libc++ was not 309well tested or set up to build on Linux until relatively recently. As 310a consequence, this guide suggests just using libstdc++ and a modern GCC as the 311initial host in a bootstrap, and then using Clang (and potentially libc++). 312 313The first step is to get a recent GCC toolchain installed. The most common 314distribution on which users have struggled with the version requirements is 315Ubuntu Precise, 12.04 LTS. For this distribution, one easy option is to install 316the `toolchain testing PPA`_ and use it to install a modern GCC. There is 317a really nice discussions of this on the `ask ubuntu stack exchange`_. However, 318not all users can use PPAs and there are many other distributions, so it may be 319necessary (or just useful, if you're here you *are* doing compiler development 320after all) to build and install GCC from source. It is also quite easy to do 321these days. 322 323.. _toolchain testing PPA: 324 https://launchpad.net/~ubuntu-toolchain-r/+archive/test 325.. _ask ubuntu stack exchange: 326 http://askubuntu.com/questions/271388/how-to-install-gcc-4-8-in-ubuntu-12-04-from-the-terminal 327 328Easy steps for installing GCC 4.8.2: 329 330.. code-block:: console 331 332 % wget https://ftp.gnu.org/gnu/gcc/gcc-4.8.2/gcc-4.8.2.tar.bz2 333 % wget https://ftp.gnu.org/gnu/gcc/gcc-4.8.2/gcc-4.8.2.tar.bz2.sig 334 % wget https://ftp.gnu.org/gnu/gnu-keyring.gpg 335 % signature_invalid=`gpg --verify --no-default-keyring --keyring ./gnu-keyring.gpg gcc-4.8.2.tar.bz2.sig` 336 % if [ $signature_invalid ]; then echo "Invalid signature" ; exit 1 ; fi 337 % tar -xvjf gcc-4.8.2.tar.bz2 338 % cd gcc-4.8.2 339 % ./contrib/download_prerequisites 340 % cd .. 341 % mkdir gcc-4.8.2-build 342 % cd gcc-4.8.2-build 343 % $PWD/../gcc-4.8.2/configure --prefix=$HOME/toolchains --enable-languages=c,c++ 344 % make -j$(nproc) 345 % make install 346 347For more details, check out the excellent `GCC wiki entry`_, where I got most 348of this information from. 349 350.. _GCC wiki entry: 351 http://gcc.gnu.org/wiki/InstallingGCC 352 353Once you have a GCC toolchain, configure your build of LLVM to use the new 354toolchain for your host compiler and C++ standard library. Because the new 355version of libstdc++ is not on the system library search path, you need to pass 356extra linker flags so that it can be found at link time (``-L``) and at runtime 357(``-rpath``). If you are using CMake, this invocation should produce working 358binaries: 359 360.. code-block:: console 361 362 % mkdir build 363 % cd build 364 % CC=$HOME/toolchains/bin/gcc CXX=$HOME/toolchains/bin/g++ \ 365 cmake .. -DCMAKE_CXX_LINK_FLAGS="-Wl,-rpath,$HOME/toolchains/lib64 -L$HOME/toolchains/lib64" 366 367If you fail to set rpath, most LLVM binaries will fail on startup with a message 368from the loader similar to ``libstdc++.so.6: version `GLIBCXX_3.4.20' not 369found``. This means you need to tweak the -rpath linker flag. 370 371When you build Clang, you will need to give *it* access to modern C++11 372standard library in order to use it as your new host in part of a bootstrap. 373There are two easy ways to do this, either build (and install) libc++ along 374with Clang and then use it with the ``-stdlib=libc++`` compile and link flag, 375or install Clang into the same prefix (``$HOME/toolchains`` above) as GCC. 376Clang will look within its own prefix for libstdc++ and use it if found. You 377can also add an explicit prefix for Clang to look in for a GCC toolchain with 378the ``--gcc-toolchain=/opt/my/gcc/prefix`` flag, passing it to both compile and 379link commands when using your just-built-Clang to bootstrap. 380 381.. _Getting Started with LLVM: 382 383Getting Started with LLVM 384========================= 385 386The remainder of this guide is meant to get you up and running with LLVM and to 387give you some basic information about the LLVM environment. 388 389The later sections of this guide describe the `general layout`_ of the LLVM 390source tree, a `simple example`_ using the LLVM tool chain, and `links`_ to find 391more information about LLVM or to get help via e-mail. 392 393Terminology and Notation 394------------------------ 395 396Throughout this manual, the following names are used to denote paths specific to 397the local system and working environment. *These are not environment variables 398you need to set but just strings used in the rest of this document below*. In 399any of the examples below, simply replace each of these names with the 400appropriate pathname on your local system. All these paths are absolute: 401 402``SRC_ROOT`` 403 404 This is the top level directory of the LLVM source tree. 405 406``OBJ_ROOT`` 407 408 This is the top level directory of the LLVM object tree (i.e. the tree where 409 object files and compiled programs will be placed. It can be the same as 410 SRC_ROOT). 411 412Unpacking the LLVM Archives 413--------------------------- 414 415If you have the LLVM distribution, you will need to unpack it before you can 416begin to compile it. LLVM is distributed as a set of two files: the LLVM suite 417and the LLVM GCC front end compiled for your platform. There is an additional 418test suite that is optional. Each file is a TAR archive that is compressed with 419the gzip program. 420 421The files are as follows, with *x.y* marking the version number: 422 423``llvm-x.y.tar.gz`` 424 425 Source release for the LLVM libraries and tools. 426 427``llvm-test-x.y.tar.gz`` 428 429 Source release for the LLVM test-suite. 430 431.. _checkout: 432 433Checkout LLVM from Subversion 434----------------------------- 435 436If you have access to our Subversion repository, you can get a fresh copy of the 437entire source code. All you need to do is check it out from Subversion as 438follows: 439 440* ``cd where-you-want-llvm-to-live`` 441* Read-Only: ``svn co http://llvm.org/svn/llvm-project/llvm/trunk llvm`` 442* Read-Write: ``svn co https://[email protected]/svn/llvm-project/llvm/trunk llvm`` 443 444This will create an '``llvm``' directory in the current directory and fully 445populate it with the LLVM source code, Makefiles, test directories, and local 446copies of documentation files. 447 448If you want to get a specific release (as opposed to the most recent revision), 449you can checkout it from the '``tags``' directory (instead of '``trunk``'). The 450following releases are located in the following subdirectories of the '``tags``' 451directory: 452 453* Release 3.4: **RELEASE_34/final** 454* Release 3.3: **RELEASE_33/final** 455* Release 3.2: **RELEASE_32/final** 456* Release 3.1: **RELEASE_31/final** 457* Release 3.0: **RELEASE_30/final** 458* Release 2.9: **RELEASE_29/final** 459* Release 2.8: **RELEASE_28** 460* Release 2.7: **RELEASE_27** 461* Release 2.6: **RELEASE_26** 462* Release 2.5: **RELEASE_25** 463* Release 2.4: **RELEASE_24** 464* Release 2.3: **RELEASE_23** 465* Release 2.2: **RELEASE_22** 466* Release 2.1: **RELEASE_21** 467* Release 2.0: **RELEASE_20** 468* Release 1.9: **RELEASE_19** 469* Release 1.8: **RELEASE_18** 470* Release 1.7: **RELEASE_17** 471* Release 1.6: **RELEASE_16** 472* Release 1.5: **RELEASE_15** 473* Release 1.4: **RELEASE_14** 474* Release 1.3: **RELEASE_13** 475* Release 1.2: **RELEASE_12** 476* Release 1.1: **RELEASE_11** 477* Release 1.0: **RELEASE_1** 478 479If you would like to get the LLVM test suite (a separate package as of 1.4), you 480get it from the Subversion repository: 481 482.. code-block:: console 483 484 % cd llvm/projects 485 % svn co http://llvm.org/svn/llvm-project/test-suite/trunk test-suite 486 487By placing it in the ``llvm/projects``, it will be automatically configured by 488the LLVM cmake configuration. 489 490Git Mirror 491---------- 492 493Git mirrors are available for a number of LLVM subprojects. These mirrors sync 494automatically with each Subversion commit and contain all necessary git-svn 495marks (so, you can recreate git-svn metadata locally). Note that right now 496mirrors reflect only ``trunk`` for each project. You can do the read-only Git 497clone of LLVM via: 498 499.. code-block:: console 500 501 % git clone http://llvm.org/git/llvm.git 502 503If you want to check out clang too, run: 504 505.. code-block:: console 506 507 % cd llvm/tools 508 % git clone http://llvm.org/git/clang.git 509 510If you want to check out compiler-rt (required to build the sanitizers), run: 511 512.. code-block:: console 513 514 % cd llvm/projects 515 % git clone http://llvm.org/git/compiler-rt.git 516 517If you want to check out libomp (required for OpenMP support), run: 518 519.. code-block:: console 520 521 % cd llvm/projects 522 % git clone http://llvm.org/git/openmp.git 523 524If you want to check out libcxx and libcxxabi (optional), run: 525 526.. code-block:: console 527 528 % cd llvm/projects 529 % git clone http://llvm.org/git/libcxx.git 530 % git clone http://llvm.org/git/libcxxabi.git 531 532If you want to check out the Test Suite Source Code (optional), run: 533 534.. code-block:: console 535 536 % cd llvm/projects 537 % git clone http://llvm.org/git/test-suite.git 538 539Since the upstream repository is in Subversion, you should use ``git 540pull --rebase`` instead of ``git pull`` to avoid generating a non-linear history 541in your clone. To configure ``git pull`` to pass ``--rebase`` by default on the 542master branch, run the following command: 543 544.. code-block:: console 545 546 % git config branch.master.rebase true 547 548Sending patches with Git 549^^^^^^^^^^^^^^^^^^^^^^^^ 550 551Please read `Developer Policy <DeveloperPolicy.html#one-off-patches>`_, too. 552 553Assume ``master`` points the upstream and ``mybranch`` points your working 554branch, and ``mybranch`` is rebased onto ``master``. At first you may check 555sanity of whitespaces: 556 557.. code-block:: console 558 559 % git diff --check master..mybranch 560 561The easiest way to generate a patch is as below: 562 563.. code-block:: console 564 565 % git diff master..mybranch > /path/to/mybranch.diff 566 567It is a little different from svn-generated diff. git-diff-generated diff has 568prefixes like ``a/`` and ``b/``. Don't worry, most developers might know it 569could be accepted with ``patch -p1 -N``. 570 571But you may generate patchset with git-format-patch. It generates by-each-commit 572patchset. To generate patch files to attach to your article: 573 574.. code-block:: console 575 576 % git format-patch --no-attach master..mybranch -o /path/to/your/patchset 577 578If you would like to send patches directly, you may use git-send-email or 579git-imap-send. Here is an example to generate the patchset in Gmail's [Drafts]. 580 581.. code-block:: console 582 583 % git format-patch --attach master..mybranch --stdout | git imap-send 584 585Then, your .git/config should have [imap] sections. 586 587.. code-block:: ini 588 589 [imap] 590 host = imaps://imap.gmail.com 591 user = [email protected] 592 pass = himitsu! 593 port = 993 594 sslverify = false 595 ; in English 596 folder = "[Gmail]/Drafts" 597 ; example for Japanese, "Modified UTF-7" encoded. 598 folder = "[Gmail]/&Tgtm+DBN-" 599 ; example for Traditional Chinese 600 folder = "[Gmail]/&g0l6Pw-" 601 602.. _developers-work-with-git-svn: 603 604For developers to work with git-svn 605^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 606 607To set up clone from which you can submit code using ``git-svn``, run: 608 609.. code-block:: console 610 611 % git clone http://llvm.org/git/llvm.git 612 % cd llvm 613 % git svn init https://llvm.org/svn/llvm-project/llvm/trunk --username=<username> 614 % git config svn-remote.svn.fetch :refs/remotes/origin/master 615 % git svn rebase -l # -l avoids fetching ahead of the git mirror. 616 617 # If you have clang too: 618 % cd tools 619 % git clone http://llvm.org/git/clang.git 620 % cd clang 621 % git svn init https://llvm.org/svn/llvm-project/cfe/trunk --username=<username> 622 % git config svn-remote.svn.fetch :refs/remotes/origin/master 623 % git svn rebase -l 624 625Likewise for compiler-rt, libomp and test-suite. 626 627To update this clone without generating git-svn tags that conflict with the 628upstream Git repo, run: 629 630.. code-block:: console 631 632 % git fetch && (cd tools/clang && git fetch) # Get matching revisions of both trees. 633 % git checkout master 634 % git svn rebase -l 635 % (cd tools/clang && 636 git checkout master && 637 git svn rebase -l) 638 639Likewise for compiler-rt, libomp and test-suite. 640 641This leaves your working directories on their master branches, so you'll need to 642``checkout`` each working branch individually and ``rebase`` it on top of its 643parent branch. 644 645For those who wish to be able to update an llvm repo/revert patches easily using 646git-svn, please look in the directory for the scripts ``git-svnup`` and 647``git-svnrevert``. 648 649To perform the aforementioned update steps go into your source directory and 650just type ``git-svnup`` or ``git svnup`` and everything will just work. 651 652If one wishes to revert a commit with git-svn, but do not want the git hash to 653escape into the commit message, one can use the script ``git-svnrevert`` or 654``git svnrevert`` which will take in the git hash for the commit you want to 655revert, look up the appropriate svn revision, and output a message where all 656references to the git hash have been replaced with the svn revision. 657 658To commit back changes via git-svn, use ``git svn dcommit``: 659 660.. code-block:: console 661 662 % git svn dcommit 663 664Note that git-svn will create one SVN commit for each Git commit you have pending, 665so squash and edit each commit before executing ``dcommit`` to make sure they all 666conform to the coding standards and the developers' policy. 667 668On success, ``dcommit`` will rebase against the HEAD of SVN, so to avoid conflict, 669please make sure your current branch is up-to-date (via fetch/rebase) before 670proceeding. 671 672The git-svn metadata can get out of sync after you mess around with branches and 673``dcommit``. When that happens, ``git svn dcommit`` stops working, complaining 674about files with uncommitted changes. The fix is to rebuild the metadata: 675 676.. code-block:: console 677 678 % rm -rf .git/svn 679 % git svn rebase -l 680 681Please, refer to the Git-SVN manual (``man git-svn``) for more information. 682 683For developers to work with a git monorepo 684^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 685 686.. note:: 687 688 This set-up is using unofficial mirror hosted on GitHub, use with caution. 689 690To set up a clone of all the llvm projects using a unified repository: 691 692.. code-block:: console 693 694 % export TOP_LEVEL_DIR=`pwd` 695 % git clone https://github.com/llvm-project/llvm-project/ 696 % cd llvm-project 697 % git config branch.master.rebase true 698 699You can configure various build directory from this clone, starting with a build 700of LLVM alone: 701 702.. code-block:: console 703 704 % cd $TOP_LEVEL_DIR 705 % mkdir llvm-build && cd llvm-build 706 % cmake -GNinja ../llvm-project/llvm 707 708Or lldb: 709 710.. code-block:: console 711 712 % cd $TOP_LEVEL_DIR 713 % mkdir lldb-build && cd lldb-build 714 % cmake -GNinja ../llvm-project/llvm -DLLVM_ENABLE_PROJECTS=lldb 715 716Or a combination of multiple projects: 717 718.. code-block:: console 719 720 % cd $TOP_LEVEL_DIR 721 % mkdir clang-build && cd clang-build 722 % cmake -GNinja ../llvm-project/llvm -DLLVM_ENABLE_PROJECTS="clang;libcxx;compiler-rt" 723 724A helper script is provided in `llvm/utils/git-svn/git-llvm`. After you add it 725to your path, you can push committed changes upstream with `git llvm push`. 726 727.. code-block:: console 728 729 % export PATH=$PATH:$TOP_LEVEL_DIR/llvm-project/llvm/utils/git-svn/ 730 % git llvm push 731 732While this is using SVN under the hood, it does not require any interaction from 733you with git-svn. 734After a few minutes, `git pull` should get back the changes as they were 735commited. Note that a current limitation is that `git` does not directly record 736file rename, and thus it is propagated to SVN as a combination of delete-add 737instead of a file rename. 738 739If you are using `arc` to interact with Phabricator, you need to manually put it 740at the root of the checkout: 741 742.. code-block:: console 743 744 % cd $TOP_LEVEL_DIR 745 % cp llvm/.arcconfig ./ 746 % mkdir -p .git/info/ 747 % echo .arcconfig >> .git/info/exclude 748 749 750Local LLVM Configuration 751------------------------ 752 753Once checked out from the Subversion repository, the LLVM suite source code must 754be configured before being built. This process uses CMake. 755Unlinke the normal ``configure`` script, CMake 756generates the build files in whatever format you request as well as various 757``*.inc`` files, and ``llvm/include/Config/config.h``. 758 759Variables are passed to ``cmake`` on the command line using the format 760``-D<variable name>=<value>``. The following variables are some common options 761used by people developing LLVM. 762 763+-------------------------+----------------------------------------------------+ 764| Variable | Purpose | 765+=========================+====================================================+ 766| CMAKE_C_COMPILER | Tells ``cmake`` which C compiler to use. By | 767| | default, this will be /usr/bin/cc. | 768+-------------------------+----------------------------------------------------+ 769| CMAKE_CXX_COMPILER | Tells ``cmake`` which C++ compiler to use. By | 770| | default, this will be /usr/bin/c++. | 771+-------------------------+----------------------------------------------------+ 772| CMAKE_BUILD_TYPE | Tells ``cmake`` what type of build you are trying | 773| | to generate files for. Valid options are Debug, | 774| | Release, RelWithDebInfo, and MinSizeRel. Default | 775| | is Debug. | 776+-------------------------+----------------------------------------------------+ 777| CMAKE_INSTALL_PREFIX | Specifies the install directory to target when | 778| | running the install action of the build files. | 779+-------------------------+----------------------------------------------------+ 780| LLVM_TARGETS_TO_BUILD | A semicolon delimited list controlling which | 781| | targets will be built and linked into llc. This is | 782| | equivalent to the ``--enable-targets`` option in | 783| | the configure script. The default list is defined | 784| | as ``LLVM_ALL_TARGETS``, and can be set to include | 785| | out-of-tree targets. The default value includes: | 786| | ``AArch64, AMDGPU, ARM, BPF, Hexagon, Mips, | 787| | MSP430, NVPTX, PowerPC, Sparc, SystemZ, X86, | 788| | XCore``. | 789+-------------------------+----------------------------------------------------+ 790| LLVM_ENABLE_DOXYGEN | Build doxygen-based documentation from the source | 791| | code This is disabled by default because it is | 792| | slow and generates a lot of output. | 793+-------------------------+----------------------------------------------------+ 794| LLVM_ENABLE_SPHINX | Build sphinx-based documentation from the source | 795| | code. This is disabled by default because it is | 796| | slow and generates a lot of output. | 797+-------------------------+----------------------------------------------------+ 798| LLVM_BUILD_LLVM_DYLIB | Generate libLLVM.so. This library contains a | 799| | default set of LLVM components that can be | 800| | overridden with ``LLVM_DYLIB_COMPONENTS``. The | 801| | default contains most of LLVM and is defined in | 802| | ``tools/llvm-shlib/CMakelists.txt``. | 803+-------------------------+----------------------------------------------------+ 804| LLVM_OPTIMIZED_TABLEGEN | Builds a release tablegen that gets used during | 805| | the LLVM build. This can dramatically speed up | 806| | debug builds. | 807+-------------------------+----------------------------------------------------+ 808 809To configure LLVM, follow these steps: 810 811#. Change directory into the object root directory: 812 813 .. code-block:: console 814 815 % cd OBJ_ROOT 816 817#. Run the ``cmake``: 818 819 .. code-block:: console 820 821 % cmake -G "Unix Makefiles" -DCMAKE_INSTALL_PREFIX=prefix=/install/path 822 [other options] SRC_ROOT 823 824Compiling the LLVM Suite Source Code 825------------------------------------ 826 827Unlike with autotools, with CMake your build type is defined at configuration. 828If you want to change your build type, you can re-run cmake with the following 829invocation: 830 831 .. code-block:: console 832 833 % cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=type SRC_ROOT 834 835Between runs, CMake preserves the values set for all options. CMake has the 836following build types defined: 837 838Debug 839 840 These builds are the default. The build system will compile the tools and 841 libraries unoptimized, with debugging information, and asserts enabled. 842 843Release 844 845 For these builds, the build system will compile the tools and libraries 846 with optimizations enabled and not generate debug info. CMakes default 847 optimization level is -O3. This can be configured by setting the 848 ``CMAKE_CXX_FLAGS_RELEASE`` variable on the CMake command line. 849 850RelWithDebInfo 851 852 These builds are useful when debugging. They generate optimized binaries with 853 debug information. CMakes default optimization level is -O2. This can be 854 configured by setting the ``CMAKE_CXX_FLAGS_RELWITHDEBINFO`` variable on the 855 CMake command line. 856 857Once you have LLVM configured, you can build it by entering the *OBJ_ROOT* 858directory and issuing the following command: 859 860.. code-block:: console 861 862 % make 863 864If the build fails, please `check here`_ to see if you are using a version of 865GCC that is known not to compile LLVM. 866 867If you have multiple processors in your machine, you may wish to use some of the 868parallel build options provided by GNU Make. For example, you could use the 869command: 870 871.. code-block:: console 872 873 % make -j2 874 875There are several special targets which are useful when working with the LLVM 876source code: 877 878``make clean`` 879 880 Removes all files generated by the build. This includes object files, 881 generated C/C++ files, libraries, and executables. 882 883``make install`` 884 885 Installs LLVM header files, libraries, tools, and documentation in a hierarchy 886 under ``$PREFIX``, specified with ``CMAKE_INSTALL_PREFIX``, which 887 defaults to ``/usr/local``. 888 889``make docs-llvm-html`` 890 891 If configured with ``-DLLVM_ENABLE_SPHINX=On``, this will generate a directory 892 at ``OBJ_ROOT/docs/html`` which contains the HTML formatted documentation. 893 894Cross-Compiling LLVM 895-------------------- 896 897It is possible to cross-compile LLVM itself. That is, you can create LLVM 898executables and libraries to be hosted on a platform different from the platform 899where they are built (a Canadian Cross build). To generate build files for 900cross-compiling CMake provides a variable ``CMAKE_TOOLCHAIN_FILE`` which can 901define compiler flags and variables used during the CMake test operations. 902 903The result of such a build is executables that are not runnable on on the build 904host but can be executed on the target. As an example the following CMake 905invocation can generate build files targeting iOS. This will work on Mac OS X 906with the latest Xcode: 907 908.. code-block:: console 909 910 % cmake -G "Ninja" -DCMAKE_OSX_ARCHITECTURES="armv7;armv7s;arm64" 911 -DCMAKE_TOOLCHAIN_FILE=<PATH_TO_LLVM>/cmake/platforms/iOS.cmake 912 -DCMAKE_BUILD_TYPE=Release -DLLVM_BUILD_RUNTIME=Off -DLLVM_INCLUDE_TESTS=Off 913 -DLLVM_INCLUDE_EXAMPLES=Off -DLLVM_ENABLE_BACKTRACES=Off [options] 914 <PATH_TO_LLVM> 915 916Note: There are some additional flags that need to be passed when building for 917iOS due to limitations in the iOS SDK. 918 919Check :doc:`HowToCrossCompileLLVM` and `Clang docs on how to cross-compile in general 920<http://clang.llvm.org/docs/CrossCompilation.html>`_ for more information 921about cross-compiling. 922 923The Location of LLVM Object Files 924--------------------------------- 925 926The LLVM build system is capable of sharing a single LLVM source tree among 927several LLVM builds. Hence, it is possible to build LLVM for several different 928platforms or configurations using the same source tree. 929 930* Change directory to where the LLVM object files should live: 931 932 .. code-block:: console 933 934 % cd OBJ_ROOT 935 936* Run ``cmake``: 937 938 .. code-block:: console 939 940 % cmake -G "Unix Makefiles" SRC_ROOT 941 942The LLVM build will create a structure underneath *OBJ_ROOT* that matches the 943LLVM source tree. At each level where source files are present in the source 944tree there will be a corresponding ``CMakeFiles`` directory in the *OBJ_ROOT*. 945Underneath that directory there is another directory with a name ending in 946``.dir`` under which you'll find object files for each source. 947 948For example: 949 950 .. code-block:: console 951 952 % cd llvm_build_dir 953 % find lib/Support/ -name APFloat* 954 lib/Support/CMakeFiles/LLVMSupport.dir/APFloat.cpp.o 955 956Optional Configuration Items 957---------------------------- 958 959If you're running on a Linux system that supports the `binfmt_misc 960<http://en.wikipedia.org/wiki/binfmt_misc>`_ 961module, and you have root access on the system, you can set your system up to 962execute LLVM bitcode files directly. To do this, use commands like this (the 963first command may not be required if you are already using the module): 964 965.. code-block:: console 966 967 % mount -t binfmt_misc none /proc/sys/fs/binfmt_misc 968 % echo ':llvm:M::BC::/path/to/lli:' > /proc/sys/fs/binfmt_misc/register 969 % chmod u+x hello.bc (if needed) 970 % ./hello.bc 971 972This allows you to execute LLVM bitcode files directly. On Debian, you can also 973use this command instead of the 'echo' command above: 974 975.. code-block:: console 976 977 % sudo update-binfmts --install llvm /path/to/lli --magic 'BC' 978 979.. _Program Layout: 980.. _general layout: 981 982Directory Layout 983================ 984 985One useful source of information about the LLVM source base is the LLVM `doxygen 986<http://www.doxygen.org/>`_ documentation available at 987`<http://llvm.org/doxygen/>`_. The following is a brief introduction to code 988layout: 989 990``llvm/examples`` 991----------------- 992 993Simple examples using the LLVM IR and JIT. 994 995``llvm/include`` 996---------------- 997 998Public header files exported from the LLVM library. The three main subdirectories: 999 1000``llvm/include/llvm`` 1001 1002 All LLVM-specific header files, and subdirectories for different portions of 1003 LLVM: ``Analysis``, ``CodeGen``, ``Target``, ``Transforms``, etc... 1004 1005``llvm/include/llvm/Support`` 1006 1007 Generic support libraries provided with LLVM but not necessarily specific to 1008 LLVM. For example, some C++ STL utilities and a Command Line option processing 1009 library store header files here. 1010 1011``llvm/include/llvm/Config`` 1012 1013 Header files configured by the ``configure`` script. 1014 They wrap "standard" UNIX and C header files. Source code can include these 1015 header files which automatically take care of the conditional #includes that 1016 the ``configure`` script generates. 1017 1018``llvm/lib`` 1019------------ 1020 1021Most source files are here. By putting code in libraries, LLVM makes it easy to 1022share code among the `tools`_. 1023 1024``llvm/lib/IR/`` 1025 1026 Core LLVM source files that implement core classes like Instruction and 1027 BasicBlock. 1028 1029``llvm/lib/AsmParser/`` 1030 1031 Source code for the LLVM assembly language parser library. 1032 1033``llvm/lib/Bitcode/`` 1034 1035 Code for reading and writing bitcode. 1036 1037``llvm/lib/Analysis/`` 1038 1039 A variety of program analyses, such as Call Graphs, Induction Variables, 1040 Natural Loop Identification, etc. 1041 1042``llvm/lib/Transforms/`` 1043 1044 IR-to-IR program transformations, such as Aggressive Dead Code Elimination, 1045 Sparse Conditional Constant Propagation, Inlining, Loop Invariant Code Motion, 1046 Dead Global Elimination, and many others. 1047 1048``llvm/lib/Target/`` 1049 1050 Files describing target architectures for code generation. For example, 1051 ``llvm/lib/Target/X86`` holds the X86 machine description. 1052 1053``llvm/lib/CodeGen/`` 1054 1055 The major parts of the code generator: Instruction Selector, Instruction 1056 Scheduling, and Register Allocation. 1057 1058``llvm/lib/MC/`` 1059 1060 (FIXME: T.B.D.) ....? 1061 1062``llvm/lib/ExecutionEngine/`` 1063 1064 Libraries for directly executing bitcode at runtime in interpreted and 1065 JIT-compiled scenarios. 1066 1067``llvm/lib/Support/`` 1068 1069 Source code that corresponding to the header files in ``llvm/include/ADT/`` 1070 and ``llvm/include/Support/``. 1071 1072``llvm/projects`` 1073----------------- 1074 1075Projects not strictly part of LLVM but shipped with LLVM. This is also the 1076directory for creating your own LLVM-based projects which leverage the LLVM 1077build system. 1078 1079``llvm/test`` 1080------------- 1081 1082Feature and regression tests and other sanity checks on LLVM infrastructure. These 1083are intended to run quickly and cover a lot of territory without being exhaustive. 1084 1085``test-suite`` 1086-------------- 1087 1088A comprehensive correctness, performance, and benchmarking test suite for LLVM. 1089Comes in a separate Subversion module because not every LLVM user is interested 1090in such a comprehensive suite. For details see the :doc:`Testing Guide 1091<TestingGuide>` document. 1092 1093.. _tools: 1094 1095``llvm/tools`` 1096-------------- 1097 1098Executables built out of the libraries 1099above, which form the main part of the user interface. You can always get help 1100for a tool by typing ``tool_name -help``. The following is a brief introduction 1101to the most important tools. More detailed information is in 1102the `Command Guide <CommandGuide/index.html>`_. 1103 1104``bugpoint`` 1105 1106 ``bugpoint`` is used to debug optimization passes or code generation backends 1107 by narrowing down the given test case to the minimum number of passes and/or 1108 instructions that still cause a problem, whether it is a crash or 1109 miscompilation. See `<HowToSubmitABug.html>`_ for more information on using 1110 ``bugpoint``. 1111 1112``llvm-ar`` 1113 1114 The archiver produces an archive containing the given LLVM bitcode files, 1115 optionally with an index for faster lookup. 1116 1117``llvm-as`` 1118 1119 The assembler transforms the human readable LLVM assembly to LLVM bitcode. 1120 1121``llvm-dis`` 1122 1123 The disassembler transforms the LLVM bitcode to human readable LLVM assembly. 1124 1125``llvm-link`` 1126 1127 ``llvm-link``, not surprisingly, links multiple LLVM modules into a single 1128 program. 1129 1130``lli`` 1131 1132 ``lli`` is the LLVM interpreter, which can directly execute LLVM bitcode 1133 (although very slowly...). For architectures that support it (currently x86, 1134 Sparc, and PowerPC), by default, ``lli`` will function as a Just-In-Time 1135 compiler (if the functionality was compiled in), and will execute the code 1136 *much* faster than the interpreter. 1137 1138``llc`` 1139 1140 ``llc`` is the LLVM backend compiler, which translates LLVM bitcode to a 1141 native code assembly file or to C code (with the ``-march=c`` option). 1142 1143``opt`` 1144 1145 ``opt`` reads LLVM bitcode, applies a series of LLVM to LLVM transformations 1146 (which are specified on the command line), and outputs the resultant 1147 bitcode. '``opt -help``' is a good way to get a list of the 1148 program transformations available in LLVM. 1149 1150 ``opt`` can also run a specific analysis on an input LLVM bitcode 1151 file and print the results. Primarily useful for debugging 1152 analyses, or familiarizing yourself with what an analysis does. 1153 1154``llvm/utils`` 1155-------------- 1156 1157Utilities for working with LLVM source code; some are part of the build process 1158because they are code generators for parts of the infrastructure. 1159 1160 1161``codegen-diff`` 1162 1163 ``codegen-diff`` finds differences between code that LLC 1164 generates and code that LLI generates. This is useful if you are 1165 debugging one of them, assuming that the other generates correct output. For 1166 the full user manual, run ```perldoc codegen-diff'``. 1167 1168``emacs/`` 1169 1170 Emacs and XEmacs syntax highlighting for LLVM assembly files and TableGen 1171 description files. See the ``README`` for information on using them. 1172 1173``getsrcs.sh`` 1174 1175 Finds and outputs all non-generated source files, 1176 useful if one wishes to do a lot of development across directories 1177 and does not want to find each file. One way to use it is to run, 1178 for example: ``xemacs `utils/getsources.sh``` from the top of the LLVM source 1179 tree. 1180 1181``llvmgrep`` 1182 1183 Performs an ``egrep -H -n`` on each source file in LLVM and 1184 passes to it a regular expression provided on ``llvmgrep``'s command 1185 line. This is an efficient way of searching the source base for a 1186 particular regular expression. 1187 1188``makellvm`` 1189 1190 Compiles all files in the current directory, then 1191 compiles and links the tool that is the first argument. For example, assuming 1192 you are in ``llvm/lib/Target/Sparc``, if ``makellvm`` is in your 1193 path, running ``makellvm llc`` will make a build of the current 1194 directory, switch to directory ``llvm/tools/llc`` and build it, causing a 1195 re-linking of LLC. 1196 1197``TableGen/`` 1198 1199 Contains the tool used to generate register 1200 descriptions, instruction set descriptions, and even assemblers from common 1201 TableGen description files. 1202 1203``vim/`` 1204 1205 vim syntax-highlighting for LLVM assembly files 1206 and TableGen description files. See the ``README`` for how to use them. 1207 1208.. _simple example: 1209 1210An Example Using the LLVM Tool Chain 1211==================================== 1212 1213This section gives an example of using LLVM with the Clang front end. 1214 1215Example with clang 1216------------------ 1217 1218#. First, create a simple C file, name it 'hello.c': 1219 1220 .. code-block:: c 1221 1222 #include <stdio.h> 1223 1224 int main() { 1225 printf("hello world\n"); 1226 return 0; 1227 } 1228 1229#. Next, compile the C file into a native executable: 1230 1231 .. code-block:: console 1232 1233 % clang hello.c -o hello 1234 1235 .. note:: 1236 1237 Clang works just like GCC by default. The standard -S and -c arguments 1238 work as usual (producing a native .s or .o file, respectively). 1239 1240#. Next, compile the C file into an LLVM bitcode file: 1241 1242 .. code-block:: console 1243 1244 % clang -O3 -emit-llvm hello.c -c -o hello.bc 1245 1246 The -emit-llvm option can be used with the -S or -c options to emit an LLVM 1247 ``.ll`` or ``.bc`` file (respectively) for the code. This allows you to use 1248 the `standard LLVM tools <CommandGuide/index.html>`_ on the bitcode file. 1249 1250#. Run the program in both forms. To run the program, use: 1251 1252 .. code-block:: console 1253 1254 % ./hello 1255 1256 and 1257 1258 .. code-block:: console 1259 1260 % lli hello.bc 1261 1262 The second examples shows how to invoke the LLVM JIT, :doc:`lli 1263 <CommandGuide/lli>`. 1264 1265#. Use the ``llvm-dis`` utility to take a look at the LLVM assembly code: 1266 1267 .. code-block:: console 1268 1269 % llvm-dis < hello.bc | less 1270 1271#. Compile the program to native assembly using the LLC code generator: 1272 1273 .. code-block:: console 1274 1275 % llc hello.bc -o hello.s 1276 1277#. Assemble the native assembly language file into a program: 1278 1279 .. code-block:: console 1280 1281 % /opt/SUNWspro/bin/cc -xarch=v9 hello.s -o hello.native # On Solaris 1282 1283 % gcc hello.s -o hello.native # On others 1284 1285#. Execute the native code program: 1286 1287 .. code-block:: console 1288 1289 % ./hello.native 1290 1291 Note that using clang to compile directly to native code (i.e. when the 1292 ``-emit-llvm`` option is not present) does steps 6/7/8 for you. 1293 1294Common Problems 1295=============== 1296 1297If you are having problems building or using LLVM, or if you have any other 1298general questions about LLVM, please consult the `Frequently Asked 1299Questions <FAQ.html>`_ page. 1300 1301.. _links: 1302 1303Links 1304===== 1305 1306This document is just an **introduction** on how to use LLVM to do some simple 1307things... there are many more interesting and complicated things that you can do 1308that aren't documented here (but we'll gladly accept a patch if you want to 1309write something up!). For more information about LLVM, check out: 1310 1311* `LLVM Homepage <http://llvm.org/>`_ 1312* `LLVM Doxygen Tree <http://llvm.org/doxygen/>`_ 1313* `Starting a Project that Uses LLVM <http://llvm.org/docs/Projects.html>`_ 1314