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