2012-07-06 05:51:50 +00:00
|
|
|
========================
|
|
|
|
Building LLVM with CMake
|
|
|
|
========================
|
|
|
|
|
|
|
|
.. contents::
|
|
|
|
:local:
|
|
|
|
|
|
|
|
Introduction
|
|
|
|
============
|
|
|
|
|
|
|
|
`CMake <http://www.cmake.org/>`_ is a cross-platform build-generator tool. CMake
|
|
|
|
does not build the project, it generates the files needed by your build tool
|
2015-08-25 00:09:47 +00:00
|
|
|
(GNU make, Visual Studio, etc.) for building LLVM.
|
2012-07-06 05:51:50 +00:00
|
|
|
|
2018-03-18 11:38:41 +00:00
|
|
|
If **you are a new contributor**, please start with the :doc:`GettingStarted`
|
|
|
|
page. This page is geared for existing contributors moving from the
|
2016-02-06 19:29:23 +00:00
|
|
|
legacy configure/make system.
|
|
|
|
|
2012-07-06 05:51:50 +00:00
|
|
|
If you are really anxious about getting a functional LLVM build, go to the
|
2015-08-25 00:09:47 +00:00
|
|
|
`Quick start`_ section. If you are a CMake novice, start with `Basic CMake usage`_
|
|
|
|
and then go back to the `Quick start`_ section once you know what you are doing. The
|
2012-07-06 05:51:50 +00:00
|
|
|
`Options and variables`_ section is a reference for customizing your build. If
|
|
|
|
you already have experience with CMake, this is the recommended starting point.
|
|
|
|
|
2016-04-29 21:23:24 +00:00
|
|
|
This page is geared towards users of the LLVM CMake build. If you're looking for
|
|
|
|
information about modifying the LLVM CMake build system you may want to see the
|
|
|
|
:doc:`CMakePrimer` page. It has a basic overview of the CMake language.
|
|
|
|
|
2012-07-06 05:51:50 +00:00
|
|
|
.. _Quick start:
|
|
|
|
|
|
|
|
Quick start
|
|
|
|
===========
|
|
|
|
|
|
|
|
We use here the command-line, non-interactive CMake interface.
|
|
|
|
|
|
|
|
#. `Download <http://www.cmake.org/cmake/resources/software.html>`_ and install
|
Reland "[CMake] Bumps minimum version to 3.20.0.
This reverts commit d763c6e5e2d0a6b34097aa7dabca31e9aff9b0b6.
Adds the patch by @hans from
https://github.com/llvm/llvm-project/issues/62719
This patch fixes the Windows build.
d763c6e5e2d0a6b34097aa7dabca31e9aff9b0b6 reverted the reviews
D144509 [CMake] Bumps minimum version to 3.20.0.
This partly undoes D137724.
This change has been discussed on discourse
https://discourse.llvm.org/t/rfc-upgrading-llvms-minimum-required-cmake-version/66193
Note this does not remove work-arounds for older CMake versions, that
will be done in followup patches.
D150532 [OpenMP] Compile assembly files as ASM, not C
Since CMake 3.20, CMake explicitly passes "-x c" (or equivalent)
when compiling a file which has been set as having the language
C. This behaviour change only takes place if "cmake_minimum_required"
is set to 3.20 or newer, or if the policy CMP0119 is set to new.
Attempting to compile assembly files with "-x c" fails, however
this is workarounded in many cases, as OpenMP overrides this with
"-x assembler-with-cpp", however this is only added for non-Windows
targets.
Thus, after increasing cmake_minimum_required to 3.20, this breaks
compiling the GNU assembly for Windows targets; the GNU assembly is
used for ARM and AArch64 Windows targets when building with Clang.
This patch unbreaks that.
D150688 [cmake] Set CMP0091 to fix Windows builds after the cmake_minimum_required bump
The build uses other mechanism to select the runtime.
Fixes #62719
Reviewed By: #libc, Mordante
Differential Revision: https://reviews.llvm.org/D151344
2023-05-24 18:12:32 +02:00
|
|
|
CMake. Version 3.20.0 is the minimum required.
|
2012-07-06 05:51:50 +00:00
|
|
|
|
|
|
|
#. Open a shell. Your development tools must be reachable from this shell
|
|
|
|
through the PATH environment variable.
|
|
|
|
|
2015-08-25 00:09:47 +00:00
|
|
|
#. Create a build directory. Building LLVM in the source
|
|
|
|
directory is not supported. cd to this directory:
|
2012-07-06 05:51:50 +00:00
|
|
|
|
2012-12-12 14:23:14 +00:00
|
|
|
.. code-block:: console
|
2012-07-06 05:51:50 +00:00
|
|
|
|
|
|
|
$ mkdir mybuilddir
|
|
|
|
$ cd mybuilddir
|
|
|
|
|
2015-08-25 00:09:47 +00:00
|
|
|
#. Execute this command in the shell replacing `path/to/llvm/source/root` with
|
2012-07-06 05:51:50 +00:00
|
|
|
the path to the root of your LLVM source tree:
|
|
|
|
|
2012-12-12 14:23:14 +00:00
|
|
|
.. code-block:: console
|
2012-07-06 05:51:50 +00:00
|
|
|
|
|
|
|
$ cmake path/to/llvm/source/root
|
|
|
|
|
2015-08-25 00:09:47 +00:00
|
|
|
CMake will detect your development environment, perform a series of tests, and
|
2012-07-06 05:51:50 +00:00
|
|
|
generate the files required for building LLVM. CMake will use default values
|
|
|
|
for all build parameters. See the `Options and variables`_ section for
|
2015-08-25 00:09:47 +00:00
|
|
|
a list of build parameters that you can modify.
|
2012-07-06 05:51:50 +00:00
|
|
|
|
|
|
|
This can fail if CMake can't detect your toolset, or if it thinks that the
|
2015-08-25 00:09:47 +00:00
|
|
|
environment is not sane enough. In this case, make sure that the toolset that
|
|
|
|
you intend to use is the only one reachable from the shell, and that the shell
|
|
|
|
itself is the correct one for your development environment. CMake will refuse
|
2012-07-06 05:51:50 +00:00
|
|
|
to build MinGW makefiles if you have a POSIX shell reachable through the PATH
|
|
|
|
environment variable, for instance. You can force CMake to use a given build
|
2021-07-12 08:54:51 -07:00
|
|
|
tool; for instructions, see the `Usage`_ section, below. You may
|
|
|
|
also wish to control which targets LLVM enables, or which LLVM
|
|
|
|
components are built; see the `Frequently Used LLVM-related
|
|
|
|
variables`_ below.
|
2012-07-06 05:51:50 +00:00
|
|
|
|
2015-08-25 00:09:47 +00:00
|
|
|
#. After CMake has finished running, proceed to use IDE project files, or start
|
2015-02-13 16:15:32 +00:00
|
|
|
the build from the build directory:
|
|
|
|
|
|
|
|
.. code-block:: console
|
|
|
|
|
|
|
|
$ cmake --build .
|
|
|
|
|
|
|
|
The ``--build`` option tells ``cmake`` to invoke the underlying build
|
2015-08-25 00:09:47 +00:00
|
|
|
tool (``make``, ``ninja``, ``xcodebuild``, ``msbuild``, etc.)
|
2015-02-13 16:15:32 +00:00
|
|
|
|
2015-08-25 00:09:47 +00:00
|
|
|
The underlying build tool can be invoked directly, of course, but
|
2015-02-13 16:15:32 +00:00
|
|
|
the ``--build`` option is portable.
|
|
|
|
|
|
|
|
#. After LLVM has finished building, install it from the build directory:
|
|
|
|
|
|
|
|
.. code-block:: console
|
|
|
|
|
|
|
|
$ cmake --build . --target install
|
|
|
|
|
|
|
|
The ``--target`` option with ``install`` parameter in addition to
|
|
|
|
the ``--build`` option tells ``cmake`` to build the ``install`` target.
|
|
|
|
|
|
|
|
It is possible to set a different install prefix at installation time
|
|
|
|
by invoking the ``cmake_install.cmake`` script generated in the
|
|
|
|
build directory:
|
|
|
|
|
|
|
|
.. code-block:: console
|
|
|
|
|
|
|
|
$ cmake -DCMAKE_INSTALL_PREFIX=/tmp/llvm -P cmake_install.cmake
|
|
|
|
|
2012-07-06 05:51:50 +00:00
|
|
|
.. _Basic CMake usage:
|
|
|
|
.. _Usage:
|
|
|
|
|
|
|
|
Basic CMake usage
|
|
|
|
=================
|
|
|
|
|
2015-08-25 00:09:47 +00:00
|
|
|
This section explains basic aspects of CMake
|
|
|
|
which you may need in your day-to-day usage.
|
2012-07-06 05:51:50 +00:00
|
|
|
|
2015-08-25 00:09:47 +00:00
|
|
|
CMake comes with extensive documentation, in the form of html files, and as
|
|
|
|
online help accessible via the ``cmake`` executable itself. Execute ``cmake
|
|
|
|
--help`` for further help options.
|
2012-07-06 05:51:50 +00:00
|
|
|
|
2015-08-25 00:09:47 +00:00
|
|
|
CMake allows you to specify a build tool (e.g., GNU make, Visual Studio,
|
|
|
|
or Xcode). If not specified on the command line, CMake tries to guess which
|
|
|
|
build tool to use, based on your environment. Once it has identified your
|
|
|
|
build tool, CMake uses the corresponding *Generator* to create files for your
|
|
|
|
build tool (e.g., Makefiles or Visual Studio or Xcode project files). You can
|
2012-07-06 05:51:50 +00:00
|
|
|
explicitly specify the generator with the command line option ``-G "Name of the
|
2015-08-25 00:09:47 +00:00
|
|
|
generator"``. To see a list of the available generators on your system, execute
|
2012-07-06 05:51:50 +00:00
|
|
|
|
2012-12-12 14:23:14 +00:00
|
|
|
.. code-block:: console
|
2012-07-06 05:51:50 +00:00
|
|
|
|
|
|
|
$ cmake --help
|
|
|
|
|
2015-08-25 00:09:47 +00:00
|
|
|
This will list the generator names at the end of the help text.
|
|
|
|
|
|
|
|
Generators' names are case-sensitive, and may contain spaces. For this reason,
|
|
|
|
you should enter them exactly as they are listed in the ``cmake --help``
|
|
|
|
output, in quotes. For example, to generate project files specifically for
|
|
|
|
Visual Studio 12, you can execute:
|
2012-07-06 05:51:50 +00:00
|
|
|
|
2012-12-12 14:23:14 +00:00
|
|
|
.. code-block:: console
|
2012-07-06 05:51:50 +00:00
|
|
|
|
2015-08-25 00:09:47 +00:00
|
|
|
$ cmake -G "Visual Studio 12" path/to/llvm/source/root
|
2012-07-06 05:51:50 +00:00
|
|
|
|
|
|
|
For a given development platform there can be more than one adequate
|
2015-08-25 00:09:47 +00:00
|
|
|
generator. If you use Visual Studio, "NMake Makefiles" is a generator you can use
|
|
|
|
for building with NMake. By default, CMake chooses the most specific generator
|
2012-07-06 05:51:50 +00:00
|
|
|
supported by your development environment. If you want an alternative generator,
|
|
|
|
you must tell this to CMake with the ``-G`` option.
|
|
|
|
|
|
|
|
.. todo::
|
|
|
|
|
|
|
|
Explain variables and cache. Move explanation here from #options section.
|
|
|
|
|
|
|
|
.. _Options and variables:
|
|
|
|
|
|
|
|
Options and variables
|
|
|
|
=====================
|
|
|
|
|
|
|
|
Variables customize how the build will be generated. Options are boolean
|
|
|
|
variables, with possible values ON/OFF. Options and variables are defined on the
|
|
|
|
CMake command line like this:
|
|
|
|
|
2012-12-12 14:23:14 +00:00
|
|
|
.. code-block:: console
|
2012-07-06 05:51:50 +00:00
|
|
|
|
|
|
|
$ cmake -DVARIABLE=value path/to/llvm/source
|
|
|
|
|
2015-08-25 00:09:47 +00:00
|
|
|
You can set a variable after the initial CMake invocation to change its
|
2012-07-06 05:51:50 +00:00
|
|
|
value. You can also undefine a variable:
|
|
|
|
|
2012-12-12 14:23:14 +00:00
|
|
|
.. code-block:: console
|
2012-07-06 05:51:50 +00:00
|
|
|
|
|
|
|
$ cmake -UVARIABLE path/to/llvm/source
|
|
|
|
|
2015-08-25 00:09:47 +00:00
|
|
|
Variables are stored in the CMake cache. This is a file named ``CMakeCache.txt``
|
|
|
|
stored at the root of your build directory that is generated by ``cmake``.
|
|
|
|
Editing it yourself is not recommended.
|
2012-07-06 05:51:50 +00:00
|
|
|
|
2015-08-25 00:09:47 +00:00
|
|
|
Variables are listed in the CMake cache and later in this document with
|
|
|
|
the variable name and type separated by a colon. You can also specify the
|
|
|
|
variable and type on the CMake command line:
|
2012-07-06 05:51:50 +00:00
|
|
|
|
2012-12-12 14:23:14 +00:00
|
|
|
.. code-block:: console
|
2012-07-06 05:51:50 +00:00
|
|
|
|
|
|
|
$ cmake -DVARIABLE:TYPE=value path/to/llvm/source
|
|
|
|
|
2024-02-08 19:24:55 +01:00
|
|
|
.. _cmake_frequently_used_variables:
|
|
|
|
|
2012-07-06 05:51:50 +00:00
|
|
|
Frequently-used CMake variables
|
|
|
|
-------------------------------
|
|
|
|
|
2014-05-28 20:07:37 +00:00
|
|
|
Here are some of the CMake variables that are used often, along with a
|
2021-07-12 08:54:51 -07:00
|
|
|
brief explanation. For full documentation, consult the CMake manual,
|
|
|
|
or execute ``cmake --help-variable VARIABLE_NAME``. See `Frequently
|
|
|
|
Used LLVM-related Variables`_ below for information about commonly
|
|
|
|
used variables that control features of LLVM and enabled subprojects.
|
2012-07-06 05:51:50 +00:00
|
|
|
|
2022-04-25 10:28:59 +02:00
|
|
|
.. _cmake_build_type:
|
|
|
|
|
2012-07-06 05:51:50 +00:00
|
|
|
**CMAKE_BUILD_TYPE**:STRING
|
2022-04-25 10:28:59 +02:00
|
|
|
This configures the optimization level for ``make`` or ``ninja`` builds.
|
|
|
|
|
|
|
|
Possible values:
|
|
|
|
|
|
|
|
=========================== ============= ========== ========== ==========================
|
|
|
|
Build Type Optimizations Debug Info Assertions Best suited for
|
|
|
|
=========================== ============= ========== ========== ==========================
|
|
|
|
**Release** For Speed No No Users of LLVM and Clang
|
|
|
|
**Debug** None Yes Yes Developers of LLVM
|
|
|
|
**RelWithDebInfo** For Speed Yes No Users that also need Debug
|
|
|
|
**MinSizeRel** For Size No No When disk space matters
|
|
|
|
=========================== ============= ========== ========== ==========================
|
|
|
|
|
|
|
|
* Optimizations make LLVM/Clang run faster, but can be an impediment for
|
|
|
|
step-by-step debugging.
|
|
|
|
* Builds with debug information can use a lot of RAM and disk space and is
|
|
|
|
usually slower to run. You can improve RAM usage by using ``lld``, see
|
|
|
|
the :ref:`LLVM_USE_LINKER <llvm_use_linker>` option.
|
|
|
|
* Assertions are internal checks to help you find bugs. They typically slow
|
|
|
|
down LLVM and Clang when enabled, but can be useful during development.
|
|
|
|
You can manually set :ref:`LLVM_ENABLE_ASSERTIONS <llvm_enable_assertions>`
|
|
|
|
to override the default from `CMAKE_BUILD_TYPE`.
|
|
|
|
|
|
|
|
If you are using an IDE such as Visual Studio or Xcode, you should use
|
|
|
|
the IDE settings to set the build type.
|
2012-07-06 05:51:50 +00:00
|
|
|
|
2024-08-13 11:26:06 +02:00
|
|
|
Note: on Windows (building with MSVC or clang-cl), CMake's **RelWithDebInfo**
|
|
|
|
setting does not enable the same optimizations as **Release**. Using the
|
|
|
|
**Release** build type with :ref:`LLVM_ENABLE_PDB <llvm_enable_pdb>` set
|
|
|
|
may be a better option.
|
|
|
|
|
2012-07-06 05:51:50 +00:00
|
|
|
**CMAKE_INSTALL_PREFIX**:PATH
|
2021-07-12 08:54:51 -07:00
|
|
|
Path where LLVM will be installed when the "install" target is built.
|
2012-07-06 05:51:50 +00:00
|
|
|
|
2021-07-12 08:54:51 -07:00
|
|
|
**CMAKE_{C,CXX}_FLAGS**:STRING
|
|
|
|
Extra flags to use when compiling C and C++ source files respectively.
|
2012-07-06 05:51:50 +00:00
|
|
|
|
2021-07-12 08:54:51 -07:00
|
|
|
**CMAKE_{C,CXX}_COMPILER**:STRING
|
|
|
|
Specify the C and C++ compilers to use. If you have multiple
|
|
|
|
compilers installed, CMake might not default to the one you wish to
|
|
|
|
use.
|
|
|
|
|
|
|
|
.. _Frequently Used LLVM-related variables:
|
|
|
|
|
|
|
|
Frequently Used LLVM-related variables
|
|
|
|
--------------------------------------
|
|
|
|
|
|
|
|
The default configuration may not match your requirements. Here are
|
|
|
|
LLVM variables that are frequently used to control that. The full
|
|
|
|
description is in `LLVM-related variables`_ below.
|
|
|
|
|
|
|
|
**LLVM_ENABLE_PROJECTS**:STRING
|
|
|
|
Control which projects are enabled. For example you may want to work on clang
|
|
|
|
or lldb by specifying ``-DLLVM_ENABLE_PROJECTS="clang;lldb"``.
|
2012-07-06 05:51:50 +00:00
|
|
|
|
2022-02-09 12:08:44 -05:00
|
|
|
**LLVM_ENABLE_RUNTIMES**:STRING
|
|
|
|
Control which runtimes are enabled. For example you may want to work on
|
|
|
|
libc++ or libc++abi by specifying ``-DLLVM_ENABLE_RUNTIMES="libcxx;libcxxabi"``.
|
|
|
|
|
2022-08-18 22:44:46 -04:00
|
|
|
**LLVM_LIBDIR_SUFFIX**:STRING
|
|
|
|
Extra suffix to append to the directory where libraries are to be
|
|
|
|
installed. On a 64-bit architecture, one could use ``-DLLVM_LIBDIR_SUFFIX=64``
|
|
|
|
to install libraries to ``/usr/lib64``.
|
|
|
|
|
2021-07-12 08:54:51 -07:00
|
|
|
**LLVM_PARALLEL_{COMPILE,LINK}_JOBS**:STRING
|
|
|
|
Building the llvm toolchain can use a lot of resources, particularly
|
|
|
|
linking. These options, when you use the Ninja generator, allow you
|
|
|
|
to restrict the parallelism. For example, to avoid OOMs or going
|
|
|
|
into swap, permit only one link job per 15GB of RAM available on a
|
|
|
|
32GB machine, specify ``-G Ninja -DLLVM_PARALLEL_LINK_JOBS=2``.
|
|
|
|
|
|
|
|
**LLVM_TARGETS_TO_BUILD**:STRING
|
|
|
|
Control which targets are enabled. For example you may only need to enable
|
|
|
|
your native target with, for example, ``-DLLVM_TARGETS_TO_BUILD=X86``.
|
|
|
|
|
2022-04-25 10:28:59 +02:00
|
|
|
.. _llvm_use_linker:
|
|
|
|
|
2021-07-12 08:54:51 -07:00
|
|
|
**LLVM_USE_LINKER**:STRING
|
|
|
|
Override the system's default linker. For instance use ``lld`` with
|
|
|
|
``-DLLVM_USE_LINKER=lld``.
|
|
|
|
|
2019-10-25 10:57:52 -07:00
|
|
|
Rarely-used CMake variables
|
|
|
|
---------------------------
|
|
|
|
|
|
|
|
Here are some of the CMake variables that are rarely used, along with a brief
|
2021-07-12 08:54:51 -07:00
|
|
|
explanation and LLVM-related notes. For full documentation, consult the CMake
|
2019-10-25 10:57:52 -07:00
|
|
|
manual, or execute ``cmake --help-variable VARIABLE_NAME``.
|
|
|
|
|
|
|
|
**CMAKE_CXX_STANDARD**:STRING
|
|
|
|
Sets the C++ standard to conform to when building LLVM. Possible values are
|
2024-02-11 19:43:34 +01:00
|
|
|
17 and 20. LLVM Requires C++17 or higher. This defaults to 17.
|
2019-10-25 10:57:52 -07:00
|
|
|
|
2021-12-11 01:36:24 +00:00
|
|
|
**CMAKE_INSTALL_BINDIR**:PATH
|
|
|
|
The path to install executables, relative to the *CMAKE_INSTALL_PREFIX*.
|
|
|
|
Defaults to "bin".
|
|
|
|
|
|
|
|
**CMAKE_INSTALL_DOCDIR**:PATH
|
|
|
|
The path to install documentation, relative to the *CMAKE_INSTALL_PREFIX*.
|
|
|
|
Defaults to "share/doc".
|
|
|
|
|
2024-04-08 09:02:10 -04:00
|
|
|
**CMAKE_INSTALL_INCLUDEDIR**:PATH
|
|
|
|
The path to install header files, relative to the *CMAKE_INSTALL_PREFIX*.
|
|
|
|
Defaults to "include".
|
|
|
|
|
2021-12-11 01:36:24 +00:00
|
|
|
**CMAKE_INSTALL_MANDIR**:PATH
|
|
|
|
The path to install manpage files, relative to the *CMAKE_INSTALL_PREFIX*.
|
|
|
|
Defaults to "share/man".
|
|
|
|
|
2021-07-12 08:54:51 -07:00
|
|
|
.. _LLVM-related variables:
|
2012-07-06 05:51:50 +00:00
|
|
|
|
2021-07-12 08:54:51 -07:00
|
|
|
LLVM-related variables
|
2012-07-06 05:51:50 +00:00
|
|
|
-----------------------
|
|
|
|
|
2021-07-12 08:54:51 -07:00
|
|
|
These variables provide fine control over the build of LLVM and
|
|
|
|
enabled sub-projects. Nearly all of these variable names begin with
|
|
|
|
``LLVM_``.
|
|
|
|
|
2024-10-08 10:00:31 +01:00
|
|
|
.. _LLVM-related variables BUILD_SHARED_LIBS:
|
|
|
|
|
2021-05-14 04:24:28 -07:00
|
|
|
**BUILD_SHARED_LIBS**:BOOL
|
|
|
|
Flag indicating if each LLVM component (e.g. Support) is built as a shared
|
|
|
|
library (ON) or as a static library (OFF). Its default value is OFF. On
|
|
|
|
Windows, shared libraries may be used when building with MinGW, including
|
|
|
|
mingw-w64, but not when building with the Microsoft toolchain.
|
2012-07-06 05:51:50 +00:00
|
|
|
|
2021-05-14 04:24:28 -07:00
|
|
|
.. note:: BUILD_SHARED_LIBS is only recommended for use by LLVM developers.
|
|
|
|
If you want to build LLVM as a shared library, you should use the
|
|
|
|
``LLVM_BUILD_LLVM_DYLIB`` option.
|
2021-04-20 09:27:57 +05:30
|
|
|
|
2021-05-14 04:24:28 -07:00
|
|
|
**LLVM_ABI_BREAKING_CHECKS**:STRING
|
|
|
|
Used to decide if LLVM should be built with ABI breaking checks or
|
|
|
|
not. Allowed values are `WITH_ASSERTS` (default), `FORCE_ON` and
|
|
|
|
`FORCE_OFF`. `WITH_ASSERTS` turns on ABI breaking checks in an
|
|
|
|
assertion enabled build. `FORCE_ON` (`FORCE_OFF`) turns them on
|
|
|
|
(off) irrespective of whether normal (`NDEBUG`-based) assertions are
|
|
|
|
enabled or not. A version of LLVM built with ABI breaking checks
|
|
|
|
is not ABI compatible with a version built without it.
|
2012-07-06 05:51:50 +00:00
|
|
|
|
2023-11-16 10:32:14 -08:00
|
|
|
**LLVM_ADDITIONAL_BUILD_TYPES**:LIST
|
|
|
|
Adding a semicolon separated list of additional build types to this flag
|
|
|
|
allows for them to be specified as values in CMAKE_BUILD_TYPE without
|
|
|
|
encountering a fatal error during the configuration process.
|
|
|
|
|
2021-05-14 04:24:28 -07:00
|
|
|
**LLVM_APPEND_VC_REV**:BOOL
|
|
|
|
Embed version control revision info (Git revision id).
|
|
|
|
The version info is provided by the ``LLVM_REVISION`` macro in
|
|
|
|
``llvm/include/llvm/Support/VCSRevision.h``. Developers using git who don't
|
|
|
|
need revision info can disable this option to avoid re-linking most binaries
|
|
|
|
after a branch switch. Defaults to ON.
|
2012-07-06 05:51:50 +00:00
|
|
|
|
2024-04-08 09:02:10 -04:00
|
|
|
**LLVM_FORCE_VC_REPOSITORY**:STRING
|
|
|
|
Set the git repository to include in version info rather than calling git to
|
|
|
|
determine it.
|
|
|
|
|
2023-09-25 14:32:52 +01:00
|
|
|
**LLVM_FORCE_VC_REVISION**:STRING
|
|
|
|
Force a specific Git revision id rather than calling to git to determine it.
|
|
|
|
This is useful in environments where git is not available or non-functional
|
|
|
|
but the VC revision is available through other means.
|
|
|
|
|
2021-05-14 04:24:28 -07:00
|
|
|
**LLVM_BUILD_32_BITS**:BOOL
|
|
|
|
Build 32-bit executables and libraries on 64-bit systems. This option is
|
|
|
|
available only on some 64-bit Unix systems. Defaults to OFF.
|
2017-11-02 21:43:32 +00:00
|
|
|
|
2021-05-14 04:24:28 -07:00
|
|
|
**LLVM_BUILD_BENCHMARKS**:BOOL
|
|
|
|
Adds benchmarks to the list of default targets. Defaults to OFF.
|
|
|
|
|
|
|
|
**LLVM_BUILD_DOCS**:BOOL
|
|
|
|
Adds all *enabled* documentation targets (i.e. Doxgyen and Sphinx targets) as
|
|
|
|
dependencies of the default build targets. This results in all of the (enabled)
|
|
|
|
documentation targets being as part of a normal build. If the ``install``
|
|
|
|
target is run then this also enables all built documentation targets to be
|
|
|
|
installed. Defaults to OFF. To enable a particular documentation target, see
|
2024-03-11 22:06:30 +08:00
|
|
|
LLVM_ENABLE_SPHINX and LLVM_ENABLE_DOXYGEN.
|
2019-07-31 16:46:57 +00:00
|
|
|
|
2012-07-06 05:51:50 +00:00
|
|
|
**LLVM_BUILD_EXAMPLES**:BOOL
|
|
|
|
Build LLVM examples. Defaults to OFF. Targets for building each example are
|
|
|
|
generated in any case. See documentation for *LLVM_BUILD_TOOLS* above for more
|
|
|
|
details.
|
|
|
|
|
2021-05-14 04:24:28 -07:00
|
|
|
**LLVM_BUILD_INSTRUMENTED_COVERAGE**:BOOL
|
|
|
|
If enabled, `source-based code coverage
|
|
|
|
<https://clang.llvm.org/docs/SourceBasedCodeCoverage.html>`_ instrumentation
|
2021-08-31 12:20:16 -07:00
|
|
|
is enabled while building llvm. If CMake can locate the code coverage
|
|
|
|
scripts and the llvm-cov and llvm-profdata tools that pair to your compiler,
|
|
|
|
the build will also generate the `generate-coverage-report` target to generate
|
|
|
|
the code coverage report for LLVM, and the `clear-profile-data` utility target
|
|
|
|
to delete captured profile data. See documentation for
|
|
|
|
*LLVM_CODE_COVERAGE_TARGETS* and *LLVM_COVERAGE_SOURCE_DIRS* for more
|
|
|
|
information on configuring code coverage reports.
|
|
|
|
|
2021-05-14 04:24:28 -07:00
|
|
|
**LLVM_BUILD_LLVM_DYLIB**:BOOL
|
|
|
|
If enabled, the target for building the libLLVM shared library is added.
|
|
|
|
This library contains all of LLVM's components in a single shared library.
|
|
|
|
Defaults to OFF. This cannot be used in conjunction with BUILD_SHARED_LIBS.
|
|
|
|
Tools will only be linked to the libLLVM shared library if LLVM_LINK_LLVM_DYLIB
|
|
|
|
is also ON.
|
|
|
|
The components in the library can be customised by setting LLVM_DYLIB_COMPONENTS
|
|
|
|
to a list of the desired components.
|
|
|
|
This option is not available on Windows.
|
2012-07-06 05:51:50 +00:00
|
|
|
|
|
|
|
**LLVM_BUILD_TESTS**:BOOL
|
2021-09-01 17:20:13 -07:00
|
|
|
Include LLVM unit tests in the 'all' build target. Defaults to OFF. Targets
|
|
|
|
for building each unit test are generated in any case. You can build a
|
|
|
|
specific unit test using the targets defined under *unittests*, such as
|
|
|
|
ADTTests, IRTests, SupportTests, etc. (Search for ``add_llvm_unittest`` in
|
|
|
|
the subdirectories of *unittests* for a complete list of unit tests.) It is
|
|
|
|
possible to build all unit tests with the target *UnitTests*.
|
2012-07-06 05:51:50 +00:00
|
|
|
|
2021-05-14 04:24:28 -07:00
|
|
|
**LLVM_BUILD_TOOLS**:BOOL
|
|
|
|
Build LLVM tools. Defaults to ON. Targets for building each tool are generated
|
|
|
|
in any case. You can build a tool separately by invoking its target. For
|
|
|
|
example, you can build *llvm-as* with a Makefile-based system by executing *make
|
|
|
|
llvm-as* at the root of your build directory.
|
2012-07-06 05:51:50 +00:00
|
|
|
|
2023-02-13 08:56:56 +01:00
|
|
|
**LLVM_CCACHE_BUILD**:BOOL
|
|
|
|
If enabled and the ``ccache`` program is available, then LLVM will be
|
|
|
|
built using ``ccache`` to speed up rebuilds of LLVM and its components.
|
|
|
|
Defaults to OFF. The size and location of the cache maintained
|
|
|
|
by ``ccache`` can be adjusted via the LLVM_CCACHE_MAXSIZE and LLVM_CCACHE_DIR
|
|
|
|
options, which are passed to the CCACHE_MAXSIZE and CCACHE_DIR environment
|
|
|
|
variables, respectively.
|
|
|
|
|
2024-04-08 09:02:10 -04:00
|
|
|
**LLVM_CODE_COVERAGE_TARGETS**:STRING
|
|
|
|
If set to a semicolon separated list of targets, those targets will be used
|
|
|
|
to drive the code coverage reports. If unset, the target list will be
|
|
|
|
constructed using the LLVM build's CMake export list.
|
|
|
|
|
|
|
|
**LLVM_COVERAGE_SOURCE_DIRS**:STRING
|
|
|
|
If set to a semicolon separated list of directories, the coverage reports
|
|
|
|
will limit code coverage summaries to just the listed directories. If unset,
|
|
|
|
coverage reports will include all sources identified by the tooling.
|
|
|
|
|
2021-05-14 04:24:28 -07:00
|
|
|
**LLVM_CREATE_XCODE_TOOLCHAIN**:BOOL
|
|
|
|
macOS Only: If enabled CMake will generate a target named
|
|
|
|
'install-xcode-toolchain'. This target will create a directory at
|
|
|
|
$CMAKE_INSTALL_PREFIX/Toolchains containing an xctoolchain directory which can
|
|
|
|
be used to override the default system tools.
|
Pull google/benchmark library to the LLVM tree
This patch pulls google/benchmark v1.4.1 into the LLVM tree so that any
project could use it for benchmark generation. A dummy benchmark is
added to `llvm/benchmarks/DummyYAML.cpp` to validate the correctness of
the build process.
The current version does not utilize LLVM LNT and LLVM CMake
infrastructure, but that might be sufficient for most users. Two
introduced CMake variables:
* `LLVM_INCLUDE_BENCHMARKS` (`ON` by default) generates benchmark
targets
* `LLVM_BUILD_BENCHMARKS` (`OFF` by default) adds generated
benchmark targets to the list of default LLVM targets (i.e. if `ON`
benchmarks will be built upon standard build invocation, e.g. `ninja` or
`make` with no specific targets)
List of modifications:
* `BENCHMARK_ENABLE_TESTING` is disabled
* `BENCHMARK_ENABLE_EXCEPTIONS` is disabled
* `BENCHMARK_ENABLE_INSTALL` is disabled
* `BENCHMARK_ENABLE_GTEST_TESTS` is disabled
* `BENCHMARK_DOWNLOAD_DEPENDENCIES` is disabled
Original discussion can be found here:
http://lists.llvm.org/pipermail/llvm-dev/2018-August/125023.html
Reviewed by: dberris, lebedev.ri
Subscribers: ilya-biryukov, ioeric, EricWF, lebedev.ri, srhines,
dschuff, mgorny, krytarowski, fedor.sergeev, mgrang, jfb, llvm-commits
Differential Revision: https://reviews.llvm.org/D50894
llvm-svn: 340809
2018-08-28 09:42:41 +00:00
|
|
|
|
2021-12-01 21:33:31 +13:00
|
|
|
**LLVM_DEFAULT_TARGET_TRIPLE**:STRING
|
|
|
|
LLVM target to use for code generation when no target is explicitly specified.
|
|
|
|
It defaults to "host", meaning that it shall pick the architecture
|
|
|
|
of the machine where LLVM is being built. If you are building a cross-compiler,
|
|
|
|
set it to the target triple of your desired architecture.
|
|
|
|
|
2021-05-14 04:24:28 -07:00
|
|
|
**LLVM_DOXYGEN_QCH_FILENAME**:STRING
|
|
|
|
The filename of the Qt Compressed Help file that will be generated when
|
|
|
|
``-DLLVM_ENABLE_DOXYGEN=ON`` and
|
|
|
|
``-DLLVM_ENABLE_DOXYGEN_QT_HELP=ON`` are given. Defaults to
|
|
|
|
``org.llvm.qch``.
|
|
|
|
This option is only useful in combination with
|
|
|
|
``-DLLVM_ENABLE_DOXYGEN_QT_HELP=ON``;
|
|
|
|
otherwise it has no effect.
|
2012-07-06 05:51:50 +00:00
|
|
|
|
2021-05-14 04:24:28 -07:00
|
|
|
**LLVM_DOXYGEN_QHELPGENERATOR_PATH**:STRING
|
|
|
|
The path to the ``qhelpgenerator`` executable. Defaults to whatever CMake's
|
|
|
|
``find_program()`` can find. This option is only useful in combination with
|
|
|
|
``-DLLVM_ENABLE_DOXYGEN_QT_HELP=ON``; otherwise it has no
|
|
|
|
effect.
|
2012-07-06 05:51:50 +00:00
|
|
|
|
2021-05-14 04:24:28 -07:00
|
|
|
**LLVM_DOXYGEN_QHP_CUST_FILTER_NAME**:STRING
|
|
|
|
See `Qt Help Project`_ for
|
|
|
|
more information. Defaults to the CMake variable ``${PACKAGE_STRING}`` which
|
|
|
|
is a combination of the package name and version string. This filter can then
|
|
|
|
be used in Qt Creator to select only documentation from LLVM when browsing
|
|
|
|
through all the help files that you might have loaded. This option is only
|
|
|
|
useful in combination with ``-DLLVM_ENABLE_DOXYGEN_QT_HELP=ON``;
|
|
|
|
otherwise it has no effect.
|
|
|
|
|
|
|
|
.. _Qt Help Project: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom-filters
|
|
|
|
|
|
|
|
**LLVM_DOXYGEN_QHP_NAMESPACE**:STRING
|
|
|
|
Namespace under which the intermediate Qt Help Project file lives. See `Qt
|
|
|
|
Help Project`_
|
|
|
|
for more information. Defaults to "org.llvm". This option is only useful in
|
|
|
|
combination with ``-DLLVM_ENABLE_DOXYGEN_QT_HELP=ON``; otherwise
|
|
|
|
it has no effect.
|
|
|
|
|
|
|
|
**LLVM_DOXYGEN_SVG**:BOOL
|
|
|
|
Uses .svg files instead of .png files for graphs in the Doxygen output.
|
|
|
|
Defaults to OFF.
|
2019-05-02 19:37:26 +00:00
|
|
|
|
2022-04-25 10:28:59 +02:00
|
|
|
.. _llvm_enable_assertions:
|
|
|
|
|
2012-07-06 05:51:50 +00:00
|
|
|
**LLVM_ENABLE_ASSERTIONS**:BOOL
|
2015-02-10 02:04:29 +00:00
|
|
|
Enables code assertions. Defaults to ON if and only if ``CMAKE_BUILD_TYPE``
|
|
|
|
is *Debug*.
|
2012-07-06 05:51:50 +00:00
|
|
|
|
2021-05-14 04:24:28 -07:00
|
|
|
**LLVM_ENABLE_BINDINGS**:BOOL
|
2023-01-05 14:47:11 -05:00
|
|
|
If disabled, do not try to build the OCaml bindings.
|
2021-05-14 04:24:28 -07:00
|
|
|
|
2024-10-08 18:15:46 +01:00
|
|
|
**LLVM_ENABLE_DEBUGLOC_COVERAGE_TRACKING**:STRING
|
|
|
|
Enhances Debugify's ability to detect line number errors by storing extra
|
|
|
|
information inside Instructions, removing false positives from Debugify's
|
|
|
|
results at the cost of performance. Allowed values are `DISABLED` (default)
|
|
|
|
and `COVERAGE`. `COVERAGE` tracks whether and why a line number was
|
|
|
|
intentionally dropped or not generated for an instruction, allowing Debugify
|
|
|
|
to avoid reporting these as errors; this comes with a small performance cost
|
|
|
|
of ~0.1%. `COVERAGE` is an ABI-breaking option.
|
|
|
|
|
2021-05-14 04:24:28 -07:00
|
|
|
**LLVM_ENABLE_DIA_SDK**:BOOL
|
|
|
|
Enable building with MSVC DIA SDK for PDB debugging support. Available
|
|
|
|
only with MSVC. Defaults to ON.
|
|
|
|
|
|
|
|
**LLVM_ENABLE_DOXYGEN**:BOOL
|
|
|
|
Enables the generation of browsable HTML documentation using doxygen.
|
|
|
|
Defaults to OFF.
|
|
|
|
|
|
|
|
**LLVM_ENABLE_DOXYGEN_QT_HELP**:BOOL
|
|
|
|
Enables the generation of a Qt Compressed Help file. Defaults to OFF.
|
|
|
|
This affects the make target ``doxygen-llvm``. When enabled, apart from
|
|
|
|
the normal HTML output generated by doxygen, this will produce a QCH file
|
|
|
|
named ``org.llvm.qch``. You can then load this file into Qt Creator.
|
|
|
|
This option is only useful in combination with ``-DLLVM_ENABLE_DOXYGEN=ON``;
|
|
|
|
otherwise this has no effect.
|
|
|
|
|
2014-07-22 15:41:18 +00:00
|
|
|
**LLVM_ENABLE_EH**:BOOL
|
2015-08-25 00:09:47 +00:00
|
|
|
Build LLVM with exception-handling support. This is necessary if you wish to
|
2014-07-22 15:41:18 +00:00
|
|
|
link against LLVM libraries and make use of C++ exceptions in your own code
|
|
|
|
that need to propagate through LLVM code. Defaults to OFF.
|
|
|
|
|
2016-05-01 15:27:47 +00:00
|
|
|
**LLVM_ENABLE_EXPENSIVE_CHECKS**:BOOL
|
|
|
|
Enable additional time/memory expensive checking. Defaults to OFF.
|
|
|
|
|
2021-05-14 04:24:28 -07:00
|
|
|
**LLVM_ENABLE_FFI**:BOOL
|
|
|
|
Indicates whether the LLVM Interpreter will be linked with the Foreign Function
|
|
|
|
Interface library (libffi) in order to enable calling external functions.
|
|
|
|
If the library or its headers are installed in a custom
|
|
|
|
location, you can also set the variables FFI_INCLUDE_DIR and
|
|
|
|
FFI_LIBRARY_DIR to the directories where ffi.h and libffi.so can be found,
|
|
|
|
respectively. Defaults to OFF.
|
|
|
|
|
2024-04-08 09:02:10 -04:00
|
|
|
**LLVM_ENABLE_HTTPLIB**:BOOL
|
|
|
|
Enables the optional cpp-httplib dependency which is used by llvm-debuginfod
|
|
|
|
to serve debug info over HTTP. `cpp-httplib <https://github.com/yhirose/cpp-httplib>`_
|
|
|
|
must be installed, or `httplib_ROOT` must be set. Defaults to OFF.
|
|
|
|
|
2019-02-15 20:40:26 +00:00
|
|
|
**LLVM_ENABLE_IDE**:BOOL
|
|
|
|
Tell the build system that an IDE is being used. This in turn disables the
|
|
|
|
creation of certain convenience build system targets, such as the various
|
|
|
|
``install-*`` and ``check-*`` targets, since IDEs don't always deal well with
|
|
|
|
a large number of targets. This is usually autodetected, but it can be
|
2022-01-29 10:56:41 +00:00
|
|
|
configured manually to explicitly control the generation of those targets.
|
2019-02-15 20:40:26 +00:00
|
|
|
|
2021-05-14 04:24:28 -07:00
|
|
|
**LLVM_ENABLE_LIBCXX**:BOOL
|
|
|
|
If the host compiler and linker supports the stdlib flag, -stdlib=libc++ is
|
|
|
|
passed to invocations of both so that the project is built using libc++
|
|
|
|
instead of stdlibc++. Defaults to OFF.
|
|
|
|
|
|
|
|
**LLVM_ENABLE_LIBPFM**:BOOL
|
|
|
|
Enable building with libpfm to support hardware counter measurements in LLVM
|
|
|
|
tools.
|
|
|
|
Defaults to ON.
|
|
|
|
|
|
|
|
**LLVM_ENABLE_LLD**:BOOL
|
|
|
|
This option is equivalent to `-DLLVM_USE_LINKER=lld`, except during a 2-stage
|
|
|
|
build where a dependency is added from the first stage to the second ensuring
|
|
|
|
that lld is built before stage2 begins.
|
|
|
|
|
2024-04-08 09:02:10 -04:00
|
|
|
**LLVM_ENABLE_LLVM_LIBC**: BOOL
|
|
|
|
If the LLVM libc overlay is installed in a location where the host linker
|
|
|
|
can access it, all built executables will be linked against the LLVM libc
|
|
|
|
overlay before linking against the system libc. Defaults to OFF.
|
|
|
|
|
2021-05-14 04:24:28 -07:00
|
|
|
**LLVM_ENABLE_LTO**:STRING
|
|
|
|
Add ``-flto`` or ``-flto=`` flags to the compile and link command
|
|
|
|
lines, enabling link-time optimization. Possible values are ``Off``,
|
|
|
|
``On``, ``Thin`` and ``Full``. Defaults to OFF.
|
|
|
|
|
2020-08-19 17:37:20 +01:00
|
|
|
**LLVM_ENABLE_MODULES**:BOOL
|
|
|
|
Compile with `Clang Header Modules
|
|
|
|
<https://clang.llvm.org/docs/Modules.html>`_.
|
2020-03-05 09:48:40 +00:00
|
|
|
|
2024-08-13 11:26:06 +02:00
|
|
|
.. _llvm_enable_pdb:
|
|
|
|
|
|
|
|
**LLVM_ENABLE_PDB**:BOOL
|
|
|
|
For Windows builds using MSVC or clang-cl, generate PDB files when
|
|
|
|
:ref:`CMAKE_BUILD_TYPE <cmake_build_type>` is set to Release.
|
|
|
|
|
2021-05-14 04:24:28 -07:00
|
|
|
**LLVM_ENABLE_PEDANTIC**:BOOL
|
|
|
|
Enable pedantic mode. This disables compiler-specific extensions, if
|
|
|
|
possible. Defaults to ON.
|
|
|
|
|
2012-07-06 05:51:50 +00:00
|
|
|
**LLVM_ENABLE_PIC**:BOOL
|
2015-08-25 00:09:47 +00:00
|
|
|
Add the ``-fPIC`` flag to the compiler command-line, if the compiler supports
|
2012-07-06 05:51:50 +00:00
|
|
|
this flag. Some systems, like Windows, do not need this flag. Defaults to ON.
|
|
|
|
|
2021-05-14 04:24:28 -07:00
|
|
|
**LLVM_ENABLE_PROJECTS**:STRING
|
|
|
|
Semicolon-separated list of projects to build, or *all* for building all
|
2022-02-09 12:08:44 -05:00
|
|
|
(clang, lldb, lld, polly, etc) projects. This flag assumes that projects
|
|
|
|
are checked out side-by-side and not nested, i.e. clang needs to be in
|
2024-09-24 13:02:52 +01:00
|
|
|
parallel of llvm instead of nested in ``llvm/tools``. This feature allows
|
2022-02-09 12:08:44 -05:00
|
|
|
to have one build for only LLVM and another for clang+llvm using the same
|
|
|
|
source checkout.
|
2024-09-24 13:02:52 +01:00
|
|
|
|
2021-05-14 04:24:28 -07:00
|
|
|
The full list is:
|
2024-09-24 13:02:52 +01:00
|
|
|
|
2024-09-25 10:16:58 +01:00
|
|
|
``bolt;clang;clang-tools-extra;compiler-rt;cross-project-tests;libc;libclc;lld;lldb;mlir;openmp;polly;pstl``
|
|
|
|
|
|
|
|
.. note::
|
|
|
|
Some projects listed here can also go in ``LLVM_ENABLE_RUNTIMES``. They
|
|
|
|
should only appear in one of the two lists. If a project is a valid possiblity
|
|
|
|
for both, prefer putting it in ``LLVM_ENABLE_RUNTIMES``.
|
2021-05-14 04:24:28 -07:00
|
|
|
|
2024-04-08 09:02:10 -04:00
|
|
|
**LLVM_ENABLE_RTTI**:BOOL
|
|
|
|
Build LLVM with run-time type information. Defaults to OFF.
|
|
|
|
|
2021-09-01 08:45:15 +02:00
|
|
|
**LLVM_ENABLE_RUNTIMES**:STRING
|
2022-02-09 12:08:44 -05:00
|
|
|
Build libc++, libc++abi, libunwind or compiler-rt using the just-built compiler.
|
|
|
|
This is the correct way to build runtimes when putting together a toolchain.
|
2021-09-01 08:45:15 +02:00
|
|
|
It will build the builtins separately from the other runtimes to preserve
|
2021-10-28 10:42:51 -04:00
|
|
|
correct dependency ordering. If you want to build the runtimes using a system
|
2024-10-09 08:53:56 +02:00
|
|
|
compiler, see the `libc++ documentation <https://libcxx.llvm.org/VendorDocumentation.html>`_.
|
2024-09-24 13:02:52 +01:00
|
|
|
|
|
|
|
.. note::
|
|
|
|
The list should not have duplicates with ``LLVM_ENABLE_PROJECTS``.
|
|
|
|
|
2021-09-01 08:45:15 +02:00
|
|
|
The full list is:
|
2024-09-24 13:02:52 +01:00
|
|
|
|
2024-09-25 10:16:58 +01:00
|
|
|
``libc;libunwind;libcxxabi;pstl;libcxx;compiler-rt;openmp;llvm-libgcc;offload``
|
2024-09-24 13:02:52 +01:00
|
|
|
|
2021-09-01 08:45:15 +02:00
|
|
|
To enable all of them, use:
|
2024-09-24 13:02:52 +01:00
|
|
|
|
2021-09-01 08:45:15 +02:00
|
|
|
``LLVM_ENABLE_RUNTIMES=all``
|
|
|
|
|
2021-05-14 04:24:28 -07:00
|
|
|
**LLVM_ENABLE_SPHINX**:BOOL
|
|
|
|
If specified, CMake will search for the ``sphinx-build`` executable and will make
|
|
|
|
the ``SPHINX_OUTPUT_HTML`` and ``SPHINX_OUTPUT_MAN`` CMake options available.
|
|
|
|
Defaults to OFF.
|
|
|
|
|
|
|
|
**LLVM_ENABLE_THREADS**:BOOL
|
|
|
|
Build with threads support, if available. Defaults to ON.
|
|
|
|
|
|
|
|
**LLVM_ENABLE_UNWIND_TABLES**:BOOL
|
|
|
|
Enable unwind tables in the binary. Disabling unwind tables can reduce the
|
|
|
|
size of the libraries. Defaults to ON.
|
|
|
|
|
2012-07-06 05:51:50 +00:00
|
|
|
**LLVM_ENABLE_WARNINGS**:BOOL
|
|
|
|
Enable all compiler warnings. Defaults to ON.
|
|
|
|
|
|
|
|
**LLVM_ENABLE_WERROR**:BOOL
|
2015-08-25 00:09:47 +00:00
|
|
|
Stop and fail the build, if a compiler warning is triggered. Defaults to OFF.
|
2012-07-06 05:51:50 +00:00
|
|
|
|
2021-05-14 04:24:28 -07:00
|
|
|
**LLVM_ENABLE_Z3_SOLVER**:BOOL
|
|
|
|
If enabled, the Z3 constraint solver is activated for the Clang static analyzer.
|
|
|
|
A recent version of the z3 library needs to be available on the system.
|
2012-07-06 05:51:50 +00:00
|
|
|
|
2023-09-03 09:52:14 -07:00
|
|
|
**LLVM_ENABLE_ZLIB**:STRING
|
|
|
|
Used to decide if LLVM tools should support compression/decompression with
|
|
|
|
zlib. Allowed values are ``OFF``, ``ON`` (default, enable if zlib is found),
|
|
|
|
and ``FORCE_ON`` (error if zlib is not found).
|
|
|
|
|
|
|
|
**LLVM_ENABLE_ZSTD**:STRING
|
|
|
|
Used to decide if LLVM tools should support compression/decompression with
|
|
|
|
zstd. Allowed values are ``OFF``, ``ON`` (default, enable if zstd is found),
|
|
|
|
and ``FORCE_ON`` (error if zstd is not found).
|
2012-07-06 05:51:50 +00:00
|
|
|
|
2021-05-14 04:24:28 -07:00
|
|
|
**LLVM_EXPERIMENTAL_TARGETS_TO_BUILD**:STRING
|
2021-11-15 09:17:08 +08:00
|
|
|
Semicolon-separated list of experimental targets to build and linked into
|
|
|
|
llvm. This will build the experimental target without needing it to add to the
|
2021-05-14 04:24:28 -07:00
|
|
|
list of all the targets available in the LLVM's main CMakeLists.txt.
|
2012-07-06 05:51:50 +00:00
|
|
|
|
2016-06-01 23:00:45 +00:00
|
|
|
**LLVM_EXTERNAL_PROJECTS**:STRING
|
|
|
|
Semicolon-separated list of additional external projects to build as part of
|
|
|
|
llvm. For each project LLVM_EXTERNAL_<NAME>_SOURCE_DIR have to be specified
|
|
|
|
with the path for the source code of the project. Example:
|
|
|
|
``-DLLVM_EXTERNAL_PROJECTS="Foo;Bar"
|
2016-06-02 00:26:18 +00:00
|
|
|
-DLLVM_EXTERNAL_FOO_SOURCE_DIR=/src/foo
|
|
|
|
-DLLVM_EXTERNAL_BAR_SOURCE_DIR=/src/bar``.
|
2016-06-01 23:00:45 +00:00
|
|
|
|
2024-04-08 09:02:10 -04:00
|
|
|
**LLVM_EXTERNAL_{CLANG,LLD,POLLY}_SOURCE_DIR**:PATH
|
|
|
|
These variables specify the path to the source directory for the external
|
|
|
|
LLVM projects Clang, lld, and Polly, respectively, relative to the top-level
|
|
|
|
source directory. If the in-tree subdirectory for an external project
|
|
|
|
exists (e.g., llvm/tools/clang for Clang), then the corresponding variable
|
|
|
|
will not be used. If the variable for an external project does not point
|
|
|
|
to a valid path, then that project will not be built.
|
|
|
|
|
2021-05-14 04:24:28 -07:00
|
|
|
**LLVM_EXTERNALIZE_DEBUGINFO**:BOOL
|
|
|
|
Generate dSYM files and strip executables and libraries (Darwin Only).
|
|
|
|
Defaults to OFF.
|
2013-07-09 10:56:13 +00:00
|
|
|
|
2024-04-05 14:41:20 -07:00
|
|
|
**LLVM_ENABLE_EXPORTED_SYMBOLS_IN_EXECUTABLES**:BOOL
|
2024-10-09 08:53:56 +02:00
|
|
|
When building executables, preserve symbol exports. Defaults to ON.
|
|
|
|
You can use this option to disable exported symbols from all
|
2024-04-05 14:41:20 -07:00
|
|
|
executables (Darwin Only).
|
|
|
|
|
2021-05-14 04:24:28 -07:00
|
|
|
**LLVM_FORCE_USE_OLD_TOOLCHAIN**:BOOL
|
|
|
|
If enabled, the compiler and standard library versions won't be checked. LLVM
|
|
|
|
may not compile at all, or might fail at runtime due to known bugs in these
|
|
|
|
toolchains.
|
2020-10-14 19:09:50 -07:00
|
|
|
|
2021-05-14 04:24:28 -07:00
|
|
|
**LLVM_INCLUDE_BENCHMARKS**:BOOL
|
|
|
|
Generate build targets for the LLVM benchmarks. Defaults to ON.
|
2016-02-04 07:28:30 +00:00
|
|
|
|
2021-05-14 04:24:28 -07:00
|
|
|
**LLVM_INCLUDE_EXAMPLES**:BOOL
|
|
|
|
Generate build targets for the LLVM examples. Defaults to ON. You can use this
|
|
|
|
option to disable the generation of build targets for the LLVM examples.
|
2017-01-15 03:21:30 +00:00
|
|
|
|
2021-05-14 04:24:28 -07:00
|
|
|
**LLVM_INCLUDE_TESTS**:BOOL
|
|
|
|
Generate build targets for the LLVM unit tests. Defaults to ON. You can use
|
|
|
|
this option to disable the generation of build targets for the LLVM unit
|
|
|
|
tests.
|
2019-08-01 17:30:21 +00:00
|
|
|
|
2021-05-14 04:24:28 -07:00
|
|
|
**LLVM_INCLUDE_TOOLS**:BOOL
|
|
|
|
Generate build targets for the LLVM tools. Defaults to ON. You can use this
|
|
|
|
option to disable the generation of build targets for the LLVM tools.
|
2019-08-14 19:55:59 +00:00
|
|
|
|
2024-04-08 09:02:10 -04:00
|
|
|
**LLVM_INDIVIDUAL_TEST_COVERAGE**:BOOL
|
|
|
|
Enable individual test case coverage. When set to ON, code coverage data for
|
|
|
|
each test case will be generated and stored in a separate directory under the
|
|
|
|
config.test_exec_root path. This feature allows code coverage analysis of each
|
|
|
|
individual test case. Defaults to OFF.
|
|
|
|
|
2021-05-14 04:24:28 -07:00
|
|
|
**LLVM_INSTALL_BINUTILS_SYMLINKS**:BOOL
|
|
|
|
Install symlinks from the binutils tool names to the corresponding LLVM tools.
|
|
|
|
For example, ar will be symlinked to llvm-ar.
|
2017-01-15 03:21:30 +00:00
|
|
|
|
2021-05-14 04:24:28 -07:00
|
|
|
**LLVM_INSTALL_CCTOOLS_SYMLINKS**:BOOL
|
|
|
|
Install symliks from the cctools tool names to the corresponding LLVM tools.
|
|
|
|
For example, lipo will be symlinked to llvm-lipo.
|
2014-11-19 10:30:02 +00:00
|
|
|
|
2021-05-14 04:24:28 -07:00
|
|
|
**LLVM_INSTALL_OCAMLDOC_HTML_DIR**:STRING
|
|
|
|
The path to install OCamldoc-generated HTML documentation to. This path can
|
|
|
|
either be absolute or relative to the CMAKE_INSTALL_PREFIX. Defaults to
|
2021-12-11 01:36:24 +00:00
|
|
|
``${CMAKE_INSTALL_DOCDIR}/llvm/ocaml-html``.
|
2014-11-19 10:30:02 +00:00
|
|
|
|
2021-05-14 04:24:28 -07:00
|
|
|
**LLVM_INSTALL_SPHINX_HTML_DIR**:STRING
|
|
|
|
The path to install Sphinx-generated HTML documentation to. This path can
|
|
|
|
either be absolute or relative to the CMAKE_INSTALL_PREFIX. Defaults to
|
2021-12-11 01:36:24 +00:00
|
|
|
``${CMAKE_INSTALL_DOCDIR}/llvm/html``.
|
2020-09-13 16:54:47 -07:00
|
|
|
|
2021-05-14 04:24:28 -07:00
|
|
|
**LLVM_INSTALL_UTILS**:BOOL
|
|
|
|
If enabled, utility binaries like ``FileCheck`` and ``not`` will be installed
|
|
|
|
to CMAKE_INSTALL_PREFIX.
|
[Support] On Windows, add optional support for {rpmalloc|snmalloc|mimalloc}
This patch optionally replaces the CRT allocator (i.e., malloc and free) with rpmalloc (mixed public domain licence/MIT licence) or snmalloc (MIT licence) or mimalloc (MIT licence). Please note that the source code for these allocators must be available outside of LLVM's tree.
To enable, use `cmake ... -DLLVM_INTEGRATED_CRT_ALLOC=D:/git/rpmalloc -DLLVM_USE_CRT_RELEASE=MT` where `D:/git/rpmalloc` has already been git clone'd from `https://github.com/mjansson/rpmalloc`. The same applies to snmalloc and mimalloc.
When enabled, the allocator will be embeded (statically linked) into the LLVM tools & libraries. This currently only works with the static CRT (/MT), although using the dynamic CRT (/MD) could potentially work as well in the future.
When enabled, this changes the memory stack from:
new/delete -> MS VC++ CRT malloc/free -> HeapAlloc -> VirtualAlloc
to:
new/delete -> {rpmalloc|snmalloc|mimalloc} -> VirtualAlloc
The goal of this patch is to bypass the application's global heap - which is thread-safe thus inducing locking - and instead take advantage of a modern lock-free, thread cache, allocator. On a 6-core Xeon Skylake we observe a 2.5x decrease in execution time when linking a large scale application with LLD and ThinLTO (12 min 20 sec -> 5 min 34 sec), when all hardware threads are being used (using LLD's flag /opt:lldltojobs=all). On a dual 36-core Xeon Skylake with all hardware threads used, we observe a 24x decrease in execution time (1 h 2 min -> 2 min 38 sec) when linking a large application with LLD and ThinLTO. Clang build times also see a decrease in the range 5-10% depending on the configuration.
Differential Revision: https://reviews.llvm.org/D71786
2020-08-27 11:09:20 -04:00
|
|
|
|
2024-04-08 09:02:10 -04:00
|
|
|
**LLVM_INSTALL_DOXYGEN_HTML_DIR**:STRING
|
|
|
|
The path to install Doxygen-generated HTML documentation to. This path can
|
|
|
|
either be absolute or relative to the *CMAKE_INSTALL_PREFIX*. Defaults to
|
|
|
|
``${CMAKE_INSTALL_DOCDIR}/llvm/doxygen-html``.
|
|
|
|
|
[Support] On Windows, add optional support for {rpmalloc|snmalloc|mimalloc}
This patch optionally replaces the CRT allocator (i.e., malloc and free) with rpmalloc (mixed public domain licence/MIT licence) or snmalloc (MIT licence) or mimalloc (MIT licence). Please note that the source code for these allocators must be available outside of LLVM's tree.
To enable, use `cmake ... -DLLVM_INTEGRATED_CRT_ALLOC=D:/git/rpmalloc -DLLVM_USE_CRT_RELEASE=MT` where `D:/git/rpmalloc` has already been git clone'd from `https://github.com/mjansson/rpmalloc`. The same applies to snmalloc and mimalloc.
When enabled, the allocator will be embeded (statically linked) into the LLVM tools & libraries. This currently only works with the static CRT (/MT), although using the dynamic CRT (/MD) could potentially work as well in the future.
When enabled, this changes the memory stack from:
new/delete -> MS VC++ CRT malloc/free -> HeapAlloc -> VirtualAlloc
to:
new/delete -> {rpmalloc|snmalloc|mimalloc} -> VirtualAlloc
The goal of this patch is to bypass the application's global heap - which is thread-safe thus inducing locking - and instead take advantage of a modern lock-free, thread cache, allocator. On a 6-core Xeon Skylake we observe a 2.5x decrease in execution time when linking a large scale application with LLD and ThinLTO (12 min 20 sec -> 5 min 34 sec), when all hardware threads are being used (using LLD's flag /opt:lldltojobs=all). On a dual 36-core Xeon Skylake with all hardware threads used, we observe a 24x decrease in execution time (1 h 2 min -> 2 min 38 sec) when linking a large application with LLD and ThinLTO. Clang build times also see a decrease in the range 5-10% depending on the configuration.
Differential Revision: https://reviews.llvm.org/D71786
2020-08-27 11:09:20 -04:00
|
|
|
**LLVM_INTEGRATED_CRT_ALLOC**:PATH
|
|
|
|
On Windows, allows embedding a different C runtime allocator into the LLVM
|
|
|
|
tools and libraries. Using a lock-free allocator such as the ones listed below
|
|
|
|
greatly decreases ThinLTO link time by about an order of magnitude. It also
|
|
|
|
midly improves Clang build times, by about 5-10%. At the moment, rpmalloc,
|
|
|
|
snmalloc and mimalloc are supported. Use the path to `git clone` to select
|
|
|
|
the respective allocator, for example:
|
2020-08-31 08:05:55 -04:00
|
|
|
|
|
|
|
.. code-block:: console
|
|
|
|
|
|
|
|
$ D:\git> git clone https://github.com/mjansson/rpmalloc
|
|
|
|
$ D:\llvm-project> cmake ... -DLLVM_INTEGRATED_CRT_ALLOC=D:\git\rpmalloc
|
2021-11-15 09:17:08 +08:00
|
|
|
|
[Support] Vendor rpmalloc in-tree and use it for the Windows 64-bit release (#91862)
### Context
We have a longstanding performance issue on Windows, where to this day,
the default heap allocator is still lockfull. With the number of cores
increasing, building and using LLVM with the default Windows heap
allocator is sub-optimal. Notably, the ThinLTO link times with LLD are
extremely long, and increase proportionally with the number of cores in
the machine.
In
https://github.com/llvm/llvm-project/commit/a6a37a2fcd2a8048a75bd0d8280497ed89d73224,
I introduced the ability build LLVM with several popular lock-free
allocators. Downstream users however have to build their own toolchain
with this option, and building an optimal toolchain is a bit tedious and
long. Additionally, LLVM is now integrated into Visual Studio, which
AFAIK re-distributes the vanilla LLVM binaries/installer. The point
being that many users are impacted and might not be aware of this
problem, or are unable to build a more optimal version of the toolchain.
The symptom before this PR is that most of the CPU time goes to the
kernel (darker blue) when linking with ThinLTO:

With this PR, most time is spent in user space (light blue):

On higher core count machines, before this PR, the CPU usage becomes
pretty much flat because of contention:
<img width="549" alt="VM_176_windows_heap"
src="https://github.com/llvm/llvm-project/assets/37383324/f27d5800-ee02-496d-a4e7-88177e0727f0">
With this PR, similarily most CPU time is now used:
<img width="549" alt="VM_176_with_rpmalloc"
src="https://github.com/llvm/llvm-project/assets/37383324/7d4785dd-94a7-4f06-9b16-aaa4e2e505c8">
### Changes in this PR
The avenue I've taken here is to vendor/re-licence rpmalloc in-tree, and
use it when building the Windows 64-bit release. Given the permissive
rpmalloc licence, prior discussions with the LLVM foundation and
@lattner suggested this vendoring. Rpmalloc's author (@mjansson) kindly
agreed to ~~donate~~ re-licence the rpmalloc code in LLVM (please do
correct me if I misinterpreted our past communications).
I've chosen rpmalloc because it's small and gives the best value
overall. The source code is only 4 .c files. Rpmalloc is statically
replacing the weak CRT alloc symbols at link time, and has no dynamic
patching like mimalloc. As an alternative, there were several
unsuccessfull attempts made by Russell Gallop to use SCUDO in the past,
please see thread in https://reviews.llvm.org/D86694. If later someone
comes up with a PR of similar performance that uses SCUDO, we could then
delete this vendored rpmalloc folder.
I've added a new cmake flag `LLVM_ENABLE_RPMALLOC` which essentialy sets
`LLVM_INTEGRATED_CRT_ALLOC` to the in-tree rpmalloc source.
### Performance
The most obvious test is profling a ThinLTO linking step with LLD. I've
used a Clang compilation as a testbed, ie.
```
set OPTS=/GS- /D_ITERATOR_DEBUG_LEVEL=0 -Xclang -O3 -fstrict-aliasing -march=native -flto=thin -fwhole-program-vtables -fuse-ld=lld
cmake -G Ninja %ROOT%/llvm -DCMAKE_BUILD_TYPE=Release -DLLVM_ENABLE_ASSERTIONS=TRUE -DLLVM_ENABLE_PROJECTS="clang" -DLLVM_ENABLE_PDB=ON -DLLVM_OPTIMIZED_TABLEGEN=ON -DCMAKE_C_COMPILER=clang-cl.exe -DCMAKE_CXX_COMPILER=clang-cl.exe -DCMAKE_LINKER=lld-link.exe -DLLVM_ENABLE_LLD=ON -DCMAKE_CXX_FLAGS="%OPTS%" -DCMAKE_C_FLAGS="%OPTS%" -DLLVM_ENABLE_LTO=THIN
```
I've profiled the linking step with no LTO cache, with Powershell, such
as:
```
Measure-Command { lld-link /nologo @CMakeFiles\clang.rsp /out:bin\clang.exe /implib:lib\clang.lib /pdb:bin\clang.pdb /version:0.0 /machine:x64 /STACK:10000000 /DEBUG /OPT:REF /OPT:ICF /INCREMENTAL:NO /subsystem:console /MANIFEST:EMBED,ID=1 }`
```
Timings:
| Machine | Allocator | Time to link |
|--------|--------|--------|
| 16c/32t AMD Ryzen 9 5950X | Windows Heap | 10 min 38 sec |
| | **Rpmalloc** | **4 min 11 sec** |
| 32c/64t AMD Ryzen Threadripper PRO 3975WX | Windows Heap | 23 min 29
sec |
| | **Rpmalloc** | **2 min 11 sec** |
| | **Rpmalloc + /threads:64** | **1 min 50 sec** |
| 176 vCPU (2 socket) Intel Xeon Platinium 8481C (fixed clock 2.7 GHz) |
Windows Heap | 43 min 40 sec |
| | **Rpmalloc** | **1 min 45 sec** |
This also improves the overall performance when building with clang-cl.
I've profiled a regular compilation of clang itself, ie:
```
set OPTS=/GS- /D_ITERATOR_DEBUG_LEVEL=0 /arch:AVX -fuse-ld=lld
cmake -G Ninja %ROOT%/llvm -DCMAKE_BUILD_TYPE=Release -DLLVM_ENABLE_ASSERTIONS=TRUE -DLLVM_ENABLE_PROJECTS="clang;lld" -DLLVM_ENABLE_PDB=ON -DLLVM_OPTIMIZED_TABLEGEN=ON -DCMAKE_C_COMPILER=clang-cl.exe -DCMAKE_CXX_COMPILER=clang-cl.exe -DCMAKE_LINKER=lld-link.exe -DLLVM_ENABLE_LLD=ON -DCMAKE_CXX_FLAGS="%OPTS%" -DCMAKE_C_FLAGS="%OPTS%"
```
This saves approx. 30 sec when building on the Threadripper PRO 3975WX:
```
(default Windows Heap)
C:\src\git\llvm-project>hyperfine -r 5 -p "make_llvm.bat stage1_test2" "ninja clang -C stage1_test2"
Benchmark 1: ninja clang -C stage1_test2
Time (mean ± σ): 392.716 s ± 3.830 s [User: 17734.025 s, System: 1078.674 s]
Range (min … max): 390.127 s … 399.449 s 5 runs
(rpmalloc)
C:\src\git\llvm-project>hyperfine -r 5 -p "make_llvm.bat stage1_test2" "ninja clang -C stage1_test2"
Benchmark 1: ninja clang -C stage1_test2
Time (mean ± σ): 360.824 s ± 1.162 s [User: 15148.637 s, System: 905.175 s]
Range (min … max): 359.208 s … 362.288 s 5 runs
```
2024-06-20 10:54:02 -04:00
|
|
|
This option needs to be used along with the static CRT, ie. if building the
|
[CMake] Switch the CMP0091 policy (MSVC_RUNTIME_LIBRARY) to the new behaviour
With the new behaviour, the /MD or similar options aren't added to
e.g. CMAKE_CXX_FLAGS_RELEASE, but are added separately by CMake.
They can be changed by the cmake variable
CMAKE_MSVC_RUNTIME_LIBRARY or with the target property
MSVC_RUNTIME_LIBRARY.
LLVM has had its own custom CMake flags, e.g. LLVM_USE_CRT_RELEASE,
which affects which CRT is used for release mode builds. Deprecate
these and direct users to use CMAKE_MSVC_RUNTIME_LIBRARY directly
instead (and do a best effort attempt at setting CMAKE_MSVC_RUNTIME_LIBRARY
based on the existing LLVM_USE_CRT_ flags). This only handles the
simple cases, it doesn't handle multi-config generators with
different LLVM_USE_CRT_* variables for different configs though,
but that's probably fine - we should move over to the new upstream
CMake mechanism anyway, and push users towards that.
Change code in compiler-rt, that previously tried to override the
CRT choice to /MT, to set CMAKE_MSVC_RUNTIME_LIBRARY instead of
meddling in the old variables.
This resolves the policy issue in
https://github.com/llvm/llvm-project/issues/63286, and should
handle the issues that were observed originally when the
minimum CMake version was bumped, in
https://github.com/llvm/llvm-project/issues/62719 and
https://github.com/llvm/llvm-project/issues/62739.
Differential Revision: https://reviews.llvm.org/D155233
2023-07-12 12:40:37 +00:00
|
|
|
Release target, add -DCMAKE_MSVC_RUNTIME_LIBRARY=MultiThreaded.
|
[Support] Vendor rpmalloc in-tree and use it for the Windows 64-bit release (#91862)
### Context
We have a longstanding performance issue on Windows, where to this day,
the default heap allocator is still lockfull. With the number of cores
increasing, building and using LLVM with the default Windows heap
allocator is sub-optimal. Notably, the ThinLTO link times with LLD are
extremely long, and increase proportionally with the number of cores in
the machine.
In
https://github.com/llvm/llvm-project/commit/a6a37a2fcd2a8048a75bd0d8280497ed89d73224,
I introduced the ability build LLVM with several popular lock-free
allocators. Downstream users however have to build their own toolchain
with this option, and building an optimal toolchain is a bit tedious and
long. Additionally, LLVM is now integrated into Visual Studio, which
AFAIK re-distributes the vanilla LLVM binaries/installer. The point
being that many users are impacted and might not be aware of this
problem, or are unable to build a more optimal version of the toolchain.
The symptom before this PR is that most of the CPU time goes to the
kernel (darker blue) when linking with ThinLTO:

With this PR, most time is spent in user space (light blue):

On higher core count machines, before this PR, the CPU usage becomes
pretty much flat because of contention:
<img width="549" alt="VM_176_windows_heap"
src="https://github.com/llvm/llvm-project/assets/37383324/f27d5800-ee02-496d-a4e7-88177e0727f0">
With this PR, similarily most CPU time is now used:
<img width="549" alt="VM_176_with_rpmalloc"
src="https://github.com/llvm/llvm-project/assets/37383324/7d4785dd-94a7-4f06-9b16-aaa4e2e505c8">
### Changes in this PR
The avenue I've taken here is to vendor/re-licence rpmalloc in-tree, and
use it when building the Windows 64-bit release. Given the permissive
rpmalloc licence, prior discussions with the LLVM foundation and
@lattner suggested this vendoring. Rpmalloc's author (@mjansson) kindly
agreed to ~~donate~~ re-licence the rpmalloc code in LLVM (please do
correct me if I misinterpreted our past communications).
I've chosen rpmalloc because it's small and gives the best value
overall. The source code is only 4 .c files. Rpmalloc is statically
replacing the weak CRT alloc symbols at link time, and has no dynamic
patching like mimalloc. As an alternative, there were several
unsuccessfull attempts made by Russell Gallop to use SCUDO in the past,
please see thread in https://reviews.llvm.org/D86694. If later someone
comes up with a PR of similar performance that uses SCUDO, we could then
delete this vendored rpmalloc folder.
I've added a new cmake flag `LLVM_ENABLE_RPMALLOC` which essentialy sets
`LLVM_INTEGRATED_CRT_ALLOC` to the in-tree rpmalloc source.
### Performance
The most obvious test is profling a ThinLTO linking step with LLD. I've
used a Clang compilation as a testbed, ie.
```
set OPTS=/GS- /D_ITERATOR_DEBUG_LEVEL=0 -Xclang -O3 -fstrict-aliasing -march=native -flto=thin -fwhole-program-vtables -fuse-ld=lld
cmake -G Ninja %ROOT%/llvm -DCMAKE_BUILD_TYPE=Release -DLLVM_ENABLE_ASSERTIONS=TRUE -DLLVM_ENABLE_PROJECTS="clang" -DLLVM_ENABLE_PDB=ON -DLLVM_OPTIMIZED_TABLEGEN=ON -DCMAKE_C_COMPILER=clang-cl.exe -DCMAKE_CXX_COMPILER=clang-cl.exe -DCMAKE_LINKER=lld-link.exe -DLLVM_ENABLE_LLD=ON -DCMAKE_CXX_FLAGS="%OPTS%" -DCMAKE_C_FLAGS="%OPTS%" -DLLVM_ENABLE_LTO=THIN
```
I've profiled the linking step with no LTO cache, with Powershell, such
as:
```
Measure-Command { lld-link /nologo @CMakeFiles\clang.rsp /out:bin\clang.exe /implib:lib\clang.lib /pdb:bin\clang.pdb /version:0.0 /machine:x64 /STACK:10000000 /DEBUG /OPT:REF /OPT:ICF /INCREMENTAL:NO /subsystem:console /MANIFEST:EMBED,ID=1 }`
```
Timings:
| Machine | Allocator | Time to link |
|--------|--------|--------|
| 16c/32t AMD Ryzen 9 5950X | Windows Heap | 10 min 38 sec |
| | **Rpmalloc** | **4 min 11 sec** |
| 32c/64t AMD Ryzen Threadripper PRO 3975WX | Windows Heap | 23 min 29
sec |
| | **Rpmalloc** | **2 min 11 sec** |
| | **Rpmalloc + /threads:64** | **1 min 50 sec** |
| 176 vCPU (2 socket) Intel Xeon Platinium 8481C (fixed clock 2.7 GHz) |
Windows Heap | 43 min 40 sec |
| | **Rpmalloc** | **1 min 45 sec** |
This also improves the overall performance when building with clang-cl.
I've profiled a regular compilation of clang itself, ie:
```
set OPTS=/GS- /D_ITERATOR_DEBUG_LEVEL=0 /arch:AVX -fuse-ld=lld
cmake -G Ninja %ROOT%/llvm -DCMAKE_BUILD_TYPE=Release -DLLVM_ENABLE_ASSERTIONS=TRUE -DLLVM_ENABLE_PROJECTS="clang;lld" -DLLVM_ENABLE_PDB=ON -DLLVM_OPTIMIZED_TABLEGEN=ON -DCMAKE_C_COMPILER=clang-cl.exe -DCMAKE_CXX_COMPILER=clang-cl.exe -DCMAKE_LINKER=lld-link.exe -DLLVM_ENABLE_LLD=ON -DCMAKE_CXX_FLAGS="%OPTS%" -DCMAKE_C_FLAGS="%OPTS%"
```
This saves approx. 30 sec when building on the Threadripper PRO 3975WX:
```
(default Windows Heap)
C:\src\git\llvm-project>hyperfine -r 5 -p "make_llvm.bat stage1_test2" "ninja clang -C stage1_test2"
Benchmark 1: ninja clang -C stage1_test2
Time (mean ± σ): 392.716 s ± 3.830 s [User: 17734.025 s, System: 1078.674 s]
Range (min … max): 390.127 s … 399.449 s 5 runs
(rpmalloc)
C:\src\git\llvm-project>hyperfine -r 5 -p "make_llvm.bat stage1_test2" "ninja clang -C stage1_test2"
Benchmark 1: ninja clang -C stage1_test2
Time (mean ± σ): 360.824 s ± 1.162 s [User: 15148.637 s, System: 905.175 s]
Range (min … max): 359.208 s … 362.288 s 5 runs
```
2024-06-20 10:54:02 -04:00
|
|
|
Note that rpmalloc is also supported natively in-tree, see option below.
|
|
|
|
|
|
|
|
**LLVM_ENABLE_RPMALLOC**:BOOL
|
|
|
|
Similar to LLVM_INTEGRATED_CRT_ALLOC, embeds the in-tree rpmalloc into the
|
|
|
|
host toolchain as a C runtime allocator. The version currently used is
|
|
|
|
rpmalloc 1.4.5. This option also implies linking with the static CRT, there's
|
|
|
|
no need to provide CMAKE_MSVC_RUNTIME_LIBRARY.
|
[Support] On Windows, add optional support for {rpmalloc|snmalloc|mimalloc}
This patch optionally replaces the CRT allocator (i.e., malloc and free) with rpmalloc (mixed public domain licence/MIT licence) or snmalloc (MIT licence) or mimalloc (MIT licence). Please note that the source code for these allocators must be available outside of LLVM's tree.
To enable, use `cmake ... -DLLVM_INTEGRATED_CRT_ALLOC=D:/git/rpmalloc -DLLVM_USE_CRT_RELEASE=MT` where `D:/git/rpmalloc` has already been git clone'd from `https://github.com/mjansson/rpmalloc`. The same applies to snmalloc and mimalloc.
When enabled, the allocator will be embeded (statically linked) into the LLVM tools & libraries. This currently only works with the static CRT (/MT), although using the dynamic CRT (/MD) could potentially work as well in the future.
When enabled, this changes the memory stack from:
new/delete -> MS VC++ CRT malloc/free -> HeapAlloc -> VirtualAlloc
to:
new/delete -> {rpmalloc|snmalloc|mimalloc} -> VirtualAlloc
The goal of this patch is to bypass the application's global heap - which is thread-safe thus inducing locking - and instead take advantage of a modern lock-free, thread cache, allocator. On a 6-core Xeon Skylake we observe a 2.5x decrease in execution time when linking a large scale application with LLD and ThinLTO (12 min 20 sec -> 5 min 34 sec), when all hardware threads are being used (using LLD's flag /opt:lldltojobs=all). On a dual 36-core Xeon Skylake with all hardware threads used, we observe a 24x decrease in execution time (1 h 2 min -> 2 min 38 sec) when linking a large application with LLD and ThinLTO. Clang build times also see a decrease in the range 5-10% depending on the configuration.
Differential Revision: https://reviews.llvm.org/D71786
2020-08-27 11:09:20 -04:00
|
|
|
|
2016-01-15 03:33:35 +00:00
|
|
|
**LLVM_LINK_LLVM_DYLIB**:BOOL
|
|
|
|
If enabled, tools will be linked with the libLLVM shared library. Defaults
|
|
|
|
to OFF. Setting LLVM_LINK_LLVM_DYLIB to ON also sets LLVM_BUILD_LLVM_DYLIB
|
|
|
|
to ON.
|
2019-11-08 10:05:37 -08:00
|
|
|
This option is not available on Windows.
|
2016-01-15 03:33:35 +00:00
|
|
|
|
2024-04-08 09:02:10 -04:00
|
|
|
**LLVM_<target>_LINKER_FLAGS**:STRING
|
|
|
|
Defines the set of linker flags that should be applied to a <target>.
|
|
|
|
|
2021-05-14 04:24:28 -07:00
|
|
|
**LLVM_LIT_ARGS**:STRING
|
|
|
|
Arguments given to lit. ``make check`` and ``make clang-test`` are affected.
|
|
|
|
By default, ``'-sv --no-progress-bar'`` on Visual C++ and Xcode, ``'-sv'`` on
|
|
|
|
others.
|
2018-03-18 11:38:41 +00:00
|
|
|
|
2021-05-14 04:24:28 -07:00
|
|
|
**LLVM_LIT_TOOLS_DIR**:PATH
|
|
|
|
The path to GnuWin32 tools for tests. Valid on Windows host. Defaults to
|
|
|
|
the empty string, in which case lit will look for tools needed for tests
|
|
|
|
(e.g. ``grep``, ``sort``, etc.) in your %PATH%. If GnuWin32 is not in your
|
|
|
|
%PATH%, then you can set this variable to the GnuWin32 directory so that
|
|
|
|
lit can find tools needed for tests in that directory.
|
2016-01-15 03:33:35 +00:00
|
|
|
|
2023-01-23 14:09:56 +02:00
|
|
|
**LLVM_NATIVE_TOOL_DIR**:STRING
|
|
|
|
Full path to a directory containing executables for the build host
|
|
|
|
(containing binaries such as ``llvm-tblgen`` and ``clang-tblgen``). This is
|
|
|
|
intended for cross-compiling: if the user sets this variable and the
|
|
|
|
directory contains executables with the expected names, no separate
|
|
|
|
native versions of those executables will be built.
|
|
|
|
|
2023-10-01 13:15:15 +00:00
|
|
|
**LLVM_NO_INSTALL_NAME_DIR_FOR_BUILD_TREE**:BOOL
|
|
|
|
Defaults to ``OFF``. If set to ``ON``, CMake's default logic for library IDs
|
|
|
|
on Darwin in the build tree will be used. Otherwise the install-time library
|
|
|
|
IDs will be used in the build tree as well. Mainly useful when other CMake
|
|
|
|
library ID control variables (e.g., ``CMAKE_INSTALL_NAME_DIR``) are being
|
|
|
|
set to non-standard values.
|
|
|
|
|
2016-03-24 18:46:43 +00:00
|
|
|
**LLVM_OPTIMIZED_TABLEGEN**:BOOL
|
|
|
|
If enabled and building a debug or asserts build the CMake build system will
|
|
|
|
generate a Release build tree to build a fully optimized tablegen for use
|
|
|
|
during the build. Enabling this option can significantly speed up build times
|
|
|
|
especially when building LLVM in Debug configurations.
|
|
|
|
|
2024-04-22 18:31:36 -04:00
|
|
|
**LLVM_PARALLEL_{COMPILE,LINK,TABLEGEN}_JOBS**:STRING
|
|
|
|
Limit the maximum number of concurrent compilation, link or
|
|
|
|
tablegen jobs respectively. The default total number of parallel jobs is
|
|
|
|
determined by the number of logical CPUs.
|
2024-03-12 10:07:02 +00:00
|
|
|
|
2024-04-08 09:02:10 -04:00
|
|
|
**LLVM_PROFDATA_FILE**:PATH
|
|
|
|
Path to a profdata file to pass into clang's -fprofile-instr-use flag. This
|
|
|
|
can only be specified if you're building with clang.
|
|
|
|
|
2024-04-22 18:31:36 -04:00
|
|
|
**LLVM_RAM_PER_{COMPILE,LINK,TABLEGEN}_JOB**:STRING
|
|
|
|
Limit the number of concurrent compile, link or tablegen jobs
|
|
|
|
respectively, depending on available physical memory. The value
|
|
|
|
specified is in MB. The respective
|
|
|
|
``LLVM_PARALLEL_{COMPILE,LINK,TABLEGEN}_JOBS`` variable is
|
|
|
|
overwritten by computing the memory size divided by the
|
|
|
|
specified value. The largest memory user is linking, but remember
|
|
|
|
that jobs in the other categories might run in parallel to the link
|
|
|
|
jobs, and you need to consider their memory requirements when
|
|
|
|
in a memory-limited environment. Using a
|
|
|
|
``-DLLVM_RAM_PER_LINK_JOB=10000`` is a good approximation. On ELF
|
|
|
|
platforms debug builds can reduce link-time memory pressure by also
|
|
|
|
using ``LLVM_USE_SPLIT_DWARF``.
|
2024-03-12 10:07:02 +00:00
|
|
|
|
2017-07-10 17:37:36 +00:00
|
|
|
**LLVM_REVERSE_ITERATION**:BOOL
|
|
|
|
If enabled, all supported unordered llvm containers would be iterated in
|
|
|
|
reverse order. This is useful for uncovering non-determinism caused by
|
|
|
|
iteration of unordered containers.
|
|
|
|
|
2021-05-14 04:24:28 -07:00
|
|
|
**LLVM_STATIC_LINK_CXX_STDLIB**:BOOL
|
|
|
|
Statically link to the C++ standard library if possible. This uses the flag
|
|
|
|
"-static-libstdc++", but a Clang host compiler will statically link to libc++
|
|
|
|
if used in conjunction with the **LLVM_ENABLE_LIBCXX** flag. Defaults to OFF.
|
2017-09-20 17:16:00 +00:00
|
|
|
|
2021-05-14 04:24:28 -07:00
|
|
|
**LLVM_TABLEGEN**:STRING
|
|
|
|
Full path to a native TableGen executable (usually named ``llvm-tblgen``). This is
|
|
|
|
intended for cross-compiling: if the user sets this variable, no native
|
|
|
|
TableGen will be created.
|
2018-01-24 18:15:08 +00:00
|
|
|
|
2021-05-14 04:24:28 -07:00
|
|
|
**LLVM_TARGET_ARCH**:STRING
|
|
|
|
LLVM target to use for native code generation. This is required for JIT
|
|
|
|
generation. It defaults to "host", meaning that it shall pick the architecture
|
|
|
|
of the machine where LLVM is being built. If you are cross-compiling, set it
|
|
|
|
to the target architecture name.
|
|
|
|
|
|
|
|
**LLVM_TARGETS_TO_BUILD**:STRING
|
|
|
|
Semicolon-separated list of targets to build, or *all* for building all
|
|
|
|
targets. Case-sensitive. Defaults to *all*. Example:
|
|
|
|
``-DLLVM_TARGETS_TO_BUILD="X86;PowerPC"``.
|
2023-03-30 19:23:14 -07:00
|
|
|
The full list, as of March 2023, is:
|
|
|
|
``AArch64;AMDGPU;ARM;AVR;BPF;Hexagon;Lanai;LoongArch;Mips;MSP430;NVPTX;PowerPC;RISCV;Sparc;SystemZ;VE;WebAssembly;X86;XCore``
|
2019-01-16 22:22:38 +00:00
|
|
|
|
2024-10-10 20:45:40 +08:00
|
|
|
You can also specify ``host`` or ``Native`` to automatically detect and
|
|
|
|
include the target corresponding to the host machine's architecture, or
|
|
|
|
use ``all`` to include all available targets.
|
|
|
|
For example, on an x86_64 machine, specifying ``-DLLVM_TARGETS_TO_BUILD=host``
|
|
|
|
will include the ``X86`` target.
|
|
|
|
|
Bump minimum toolchain version
Summary:
The RFC on moving past C++11 got good traction:
http://lists.llvm.org/pipermail/llvm-dev/2019-January/129452.html
This patch therefore bumps the toolchain versions according to our policy:
llvm.org/docs/DeveloperPolicy.html#toolchain
Subscribers: mgorny, jkorous, dexonsmith, llvm-commits, mehdi_amini, jyknight, rsmith, chandlerc, smeenai, hans, reames, lattner, lhames, erichkeane
Differential Revision: https://reviews.llvm.org/D57264
llvm-svn: 353374
2019-02-07 05:20:00 +00:00
|
|
|
**LLVM_TEMPORARILY_ALLOW_OLD_TOOLCHAIN**:BOOL
|
|
|
|
If enabled, the compiler version check will only warn when using a toolchain
|
|
|
|
which is about to be deprecated, instead of emitting an error.
|
|
|
|
|
2021-05-14 04:24:28 -07:00
|
|
|
**LLVM_UBSAN_FLAGS**:STRING
|
|
|
|
Defines the set of compile flags used to enable UBSan. Only used if
|
|
|
|
``LLVM_USE_SANITIZER`` contains ``Undefined``. This can be used to override
|
|
|
|
the default set of UBSan flags.
|
|
|
|
|
2024-04-08 09:02:10 -04:00
|
|
|
**LLVM_UNREACHABLE_OPTIMIZE**:BOOL
|
|
|
|
This flag controls the behavior of `llvm_unreachable()` in release build
|
|
|
|
(when assertions are disabled in general). When ON (default) then
|
|
|
|
`llvm_unreachable()` is considered "undefined behavior" and optimized as
|
|
|
|
such. When OFF it is instead replaced with a guaranteed "trap".
|
|
|
|
|
2021-05-14 04:24:28 -07:00
|
|
|
**LLVM_USE_INTEL_JITEVENTS**:BOOL
|
|
|
|
Enable building support for Intel JIT Events API. Defaults to OFF.
|
|
|
|
|
|
|
|
**LLVM_USE_LINKER**:STRING
|
|
|
|
Add ``-fuse-ld={name}`` to the link invocation. The possible value depend on
|
|
|
|
your compiler, for clang the value can be an absolute path to your custom
|
|
|
|
linker, otherwise clang will prefix the name with ``ld.`` and apply its usual
|
|
|
|
search. For example to link LLVM with the Gold linker, cmake can be invoked
|
|
|
|
with ``-DLLVM_USE_LINKER=gold``.
|
|
|
|
|
|
|
|
**LLVM_USE_OPROFILE**:BOOL
|
|
|
|
Enable building OProfile JIT support. Defaults to OFF.
|
2019-07-16 11:59:17 +00:00
|
|
|
|
2021-05-14 04:24:28 -07:00
|
|
|
**LLVM_USE_PERF**:BOOL
|
|
|
|
Enable building support for Perf (linux profiling tool) JIT support. Defaults to OFF.
|
|
|
|
|
|
|
|
**LLVM_USE_RELATIVE_PATHS_IN_FILES**:BOOL
|
|
|
|
Rewrite absolute source paths in sources and debug info to relative ones. The
|
|
|
|
source prefix can be adjusted via the LLVM_SOURCE_PREFIX variable.
|
2019-09-05 19:38:15 +00:00
|
|
|
|
2020-03-11 10:59:12 -07:00
|
|
|
**LLVM_USE_RELATIVE_PATHS_IN_DEBUG_INFO**:BOOL
|
|
|
|
Rewrite absolute source paths in debug info to relative ones. The source prefix
|
|
|
|
can be adjusted via the LLVM_SOURCE_PREFIX variable.
|
|
|
|
|
2021-05-14 04:24:28 -07:00
|
|
|
**LLVM_USE_SANITIZER**:STRING
|
|
|
|
Define the sanitizer used to build LLVM binaries and tests. Possible values
|
|
|
|
are ``Address``, ``Memory``, ``MemoryWithOrigins``, ``Undefined``, ``Thread``,
|
|
|
|
``DataFlow``, and ``Address;Undefined``. Defaults to empty string.
|
2020-03-11 10:59:12 -07:00
|
|
|
|
2021-10-25 18:44:46 +05:30
|
|
|
**LLVM_USE_SPLIT_DWARF**:BOOL
|
|
|
|
If enabled CMake will pass ``-gsplit-dwarf`` to the compiler. This option
|
|
|
|
reduces link-time memory usage by reducing the amount of debug information that
|
|
|
|
the linker needs to resolve. It is recommended for platforms using the ELF object
|
|
|
|
format, like Linux systems when linker memory usage is too high.
|
|
|
|
|
2021-05-14 04:24:28 -07:00
|
|
|
**SPHINX_EXECUTABLE**:STRING
|
|
|
|
The path to the ``sphinx-build`` executable detected by CMake.
|
|
|
|
For installation instructions, see
|
|
|
|
https://www.sphinx-doc.org/en/master/usage/installation.html
|
|
|
|
|
|
|
|
**SPHINX_OUTPUT_HTML**:BOOL
|
|
|
|
If enabled (and ``LLVM_ENABLE_SPHINX`` is enabled) then the targets for
|
|
|
|
building the documentation as html are added (but not built by default unless
|
|
|
|
``LLVM_BUILD_DOCS`` is enabled). There is a target for each project in the
|
|
|
|
source tree that uses sphinx (e.g. ``docs-llvm-html``, ``docs-clang-html``
|
|
|
|
and ``docs-lld-html``). Defaults to ON.
|
|
|
|
|
|
|
|
**SPHINX_OUTPUT_MAN**:BOOL
|
|
|
|
If enabled (and ``LLVM_ENABLE_SPHINX`` is enabled) the targets for building
|
|
|
|
the man pages are added (but not built by default unless ``LLVM_BUILD_DOCS``
|
|
|
|
is enabled). Currently the only target added is ``docs-llvm-man``. Defaults
|
|
|
|
to ON.
|
|
|
|
|
|
|
|
**SPHINX_WARNINGS_AS_ERRORS**:BOOL
|
|
|
|
If enabled then sphinx documentation warnings will be treated as
|
|
|
|
errors. Defaults to ON.
|
2020-06-18 15:31:13 +02:00
|
|
|
|
2021-12-11 01:36:24 +00:00
|
|
|
Advanced variables
|
|
|
|
~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
These are niche, and changing them from their defaults is more likely to cause
|
|
|
|
things to go wrong. They are also unstable across LLVM versions.
|
|
|
|
|
2024-04-08 09:02:10 -04:00
|
|
|
**LLVM_EXAMPLES_INSTALL_DIR**:STRING
|
|
|
|
The path for examples of using LLVM, relative to the *CMAKE_INSTALL_PREFIX*.
|
|
|
|
Only matters if *LLVM_BUILD_EXAMPLES* is enabled.
|
|
|
|
Defaults to "examples".
|
|
|
|
|
2021-12-11 01:36:24 +00:00
|
|
|
**LLVM_TOOLS_INSTALL_DIR**:STRING
|
|
|
|
The path to install the main LLVM tools, relative to the *CMAKE_INSTALL_PREFIX*.
|
|
|
|
Defaults to *CMAKE_INSTALL_BINDIR*.
|
|
|
|
|
|
|
|
**LLVM_UTILS_INSTALL_DIR**:STRING
|
|
|
|
The path to install auxiliary LLVM utilities, relative to the *CMAKE_INSTALL_PREFIX*.
|
|
|
|
Only matters if *LLVM_INSTALL_UTILS* is enabled.
|
|
|
|
Defaults to *LLVM_TOOLS_INSTALL_DIR*.
|
|
|
|
|
2016-03-18 21:16:26 +00:00
|
|
|
CMake Caches
|
|
|
|
============
|
|
|
|
|
|
|
|
Recently LLVM and Clang have been adding some more complicated build system
|
|
|
|
features. Utilizing these new features often involves a complicated chain of
|
|
|
|
CMake variables passed on the command line. Clang provides a collection of CMake
|
|
|
|
cache scripts to make these features more approachable.
|
|
|
|
|
|
|
|
CMake cache files are utilized using CMake's -C flag:
|
|
|
|
|
|
|
|
.. code-block:: console
|
|
|
|
|
|
|
|
$ cmake -C <path to cache file> <path to sources>
|
|
|
|
|
|
|
|
CMake cache scripts are processed in an isolated scope, only cached variables
|
|
|
|
remain set when the main configuration runs. CMake cached variables do not reset
|
|
|
|
variables that are already set unless the FORCE option is specified.
|
|
|
|
|
|
|
|
A few notes about CMake Caches:
|
|
|
|
|
|
|
|
- Order of command line arguments is important
|
|
|
|
|
|
|
|
- -D arguments specified before -C are set before the cache is processed and
|
|
|
|
can be read inside the cache file
|
|
|
|
- -D arguments specified after -C are set after the cache is processed and
|
|
|
|
are unset inside the cache file
|
|
|
|
|
|
|
|
- All -D arguments will override cache file settings
|
|
|
|
- CMAKE_TOOLCHAIN_FILE is evaluated after both the cache file and the command
|
|
|
|
line arguments
|
|
|
|
- It is recommended that all -D options should be specified *before* -C
|
|
|
|
|
|
|
|
For more information about some of the advanced build configurations supported
|
2016-03-18 21:57:51 +00:00
|
|
|
via Cache files see :doc:`AdvancedBuilds`.
|
2016-03-18 21:16:26 +00:00
|
|
|
|
2018-08-31 21:47:01 +00:00
|
|
|
Executing the Tests
|
|
|
|
===================
|
2012-07-06 05:51:50 +00:00
|
|
|
|
2015-08-25 00:09:47 +00:00
|
|
|
Testing is performed when the *check-all* target is built. For instance, if you are
|
|
|
|
using Makefiles, execute this command in the root of your build directory:
|
2012-07-06 05:51:50 +00:00
|
|
|
|
2012-12-12 14:23:14 +00:00
|
|
|
.. code-block:: console
|
2012-07-06 05:51:50 +00:00
|
|
|
|
2015-08-25 00:09:47 +00:00
|
|
|
$ make check-all
|
2012-07-06 05:51:50 +00:00
|
|
|
|
2015-08-25 00:09:47 +00:00
|
|
|
On Visual Studio, you may run tests by building the project "check-all".
|
|
|
|
For more information about testing, see the :doc:`TestingGuide`.
|
2012-07-06 05:51:50 +00:00
|
|
|
|
|
|
|
Cross compiling
|
|
|
|
===============
|
|
|
|
|
2021-07-14 21:14:12 +08:00
|
|
|
See `this wiki page <https://gitlab.kitware.com/cmake/community/wikis/doc/cmake/CrossCompiling>`_ for
|
2012-07-06 05:51:50 +00:00
|
|
|
generic instructions on how to cross-compile with CMake. It goes into detailed
|
|
|
|
explanations and may seem daunting, but it is not. On the wiki page there are
|
2021-07-14 21:14:12 +08:00
|
|
|
several examples including toolchain files. Go directly to the
|
|
|
|
``Information how to set up various cross compiling toolchains`` section
|
2012-07-06 05:51:50 +00:00
|
|
|
for a quick solution.
|
|
|
|
|
2021-07-12 08:54:51 -07:00
|
|
|
Also see the `LLVM-related variables`_ section for variables used when
|
2012-07-06 05:51:50 +00:00
|
|
|
cross-compiling.
|
|
|
|
|
|
|
|
Embedding LLVM in your project
|
|
|
|
==============================
|
|
|
|
|
2019-07-03 09:57:59 +00:00
|
|
|
From LLVM 3.5 onwards the CMake build system exports LLVM libraries as
|
|
|
|
importable CMake targets. This means that clients of LLVM can now reliably use
|
|
|
|
CMake to develop their own LLVM-based projects against an installed version of
|
|
|
|
LLVM regardless of how it was built.
|
2014-07-28 13:36:37 +00:00
|
|
|
|
2015-08-25 00:09:47 +00:00
|
|
|
Here is a simple example of a CMakeLists.txt file that imports the LLVM libraries
|
2014-07-28 13:36:37 +00:00
|
|
|
and uses them to build a simple application ``simple-tool``.
|
2012-07-06 05:51:50 +00:00
|
|
|
|
|
|
|
.. code-block:: cmake
|
|
|
|
|
Reland "[CMake] Bumps minimum version to 3.20.0.
This reverts commit d763c6e5e2d0a6b34097aa7dabca31e9aff9b0b6.
Adds the patch by @hans from
https://github.com/llvm/llvm-project/issues/62719
This patch fixes the Windows build.
d763c6e5e2d0a6b34097aa7dabca31e9aff9b0b6 reverted the reviews
D144509 [CMake] Bumps minimum version to 3.20.0.
This partly undoes D137724.
This change has been discussed on discourse
https://discourse.llvm.org/t/rfc-upgrading-llvms-minimum-required-cmake-version/66193
Note this does not remove work-arounds for older CMake versions, that
will be done in followup patches.
D150532 [OpenMP] Compile assembly files as ASM, not C
Since CMake 3.20, CMake explicitly passes "-x c" (or equivalent)
when compiling a file which has been set as having the language
C. This behaviour change only takes place if "cmake_minimum_required"
is set to 3.20 or newer, or if the policy CMP0119 is set to new.
Attempting to compile assembly files with "-x c" fails, however
this is workarounded in many cases, as OpenMP overrides this with
"-x assembler-with-cpp", however this is only added for non-Windows
targets.
Thus, after increasing cmake_minimum_required to 3.20, this breaks
compiling the GNU assembly for Windows targets; the GNU assembly is
used for ARM and AArch64 Windows targets when building with Clang.
This patch unbreaks that.
D150688 [cmake] Set CMP0091 to fix Windows builds after the cmake_minimum_required bump
The build uses other mechanism to select the runtime.
Fixes #62719
Reviewed By: #libc, Mordante
Differential Revision: https://reviews.llvm.org/D151344
2023-05-24 18:12:32 +02:00
|
|
|
cmake_minimum_required(VERSION 3.20.0)
|
2014-07-28 13:36:37 +00:00
|
|
|
project(SimpleProject)
|
2012-07-06 05:51:50 +00:00
|
|
|
|
2014-07-28 13:36:37 +00:00
|
|
|
find_package(LLVM REQUIRED CONFIG)
|
2012-07-06 05:51:50 +00:00
|
|
|
|
2014-07-28 13:36:37 +00:00
|
|
|
message(STATUS "Found LLVM ${LLVM_PACKAGE_VERSION}")
|
|
|
|
message(STATUS "Using LLVMConfig.cmake in: ${LLVM_DIR}")
|
2012-07-06 05:51:50 +00:00
|
|
|
|
2014-07-28 13:36:37 +00:00
|
|
|
# Set your project compile flags.
|
|
|
|
# E.g. if using the C++ header files
|
|
|
|
# you will need to enable C++11 support
|
|
|
|
# for your compiler.
|
2012-07-06 05:51:50 +00:00
|
|
|
|
2016-09-01 16:43:39 +00:00
|
|
|
include_directories(${LLVM_INCLUDE_DIRS})
|
2021-05-24 23:16:10 +03:00
|
|
|
separate_arguments(LLVM_DEFINITIONS_LIST NATIVE_COMMAND ${LLVM_DEFINITIONS})
|
|
|
|
add_definitions(${LLVM_DEFINITIONS_LIST})
|
2012-07-06 05:51:50 +00:00
|
|
|
|
2014-07-28 13:36:37 +00:00
|
|
|
# Now build our tools
|
2015-02-10 14:15:58 +00:00
|
|
|
add_executable(simple-tool tool.cpp)
|
2012-07-06 05:51:50 +00:00
|
|
|
|
2014-07-28 13:36:37 +00:00
|
|
|
# Find the libraries that correspond to the LLVM components
|
|
|
|
# that we wish to use
|
|
|
|
llvm_map_components_to_libnames(llvm_libs support core irreader)
|
2012-07-06 05:51:50 +00:00
|
|
|
|
2014-07-28 13:36:37 +00:00
|
|
|
# Link against LLVM libraries
|
|
|
|
target_link_libraries(simple-tool ${llvm_libs})
|
2012-07-06 05:51:50 +00:00
|
|
|
|
2014-07-28 13:36:37 +00:00
|
|
|
The ``find_package(...)`` directive when used in CONFIG mode (as in the above
|
|
|
|
example) will look for the ``LLVMConfig.cmake`` file in various locations (see
|
|
|
|
cmake manual for details). It creates a ``LLVM_DIR`` cache entry to save the
|
|
|
|
directory where ``LLVMConfig.cmake`` is found or allows the user to specify the
|
2016-02-04 20:08:19 +00:00
|
|
|
directory (e.g. by passing ``-DLLVM_DIR=/usr/lib/cmake/llvm`` to
|
2014-07-28 13:36:37 +00:00
|
|
|
the ``cmake`` command or by setting it directly in ``ccmake`` or ``cmake-gui``).
|
|
|
|
|
|
|
|
This file is available in two different locations.
|
|
|
|
|
2021-03-25 00:03:33 +00:00
|
|
|
* ``<LLVM_INSTALL_PACKAGE_DIR>/LLVMConfig.cmake`` where
|
|
|
|
``<LLVM_INSTALL_PACKAGE_DIR>`` is the location where LLVM CMake modules are
|
|
|
|
installed as part of an installed version of LLVM. This is typically
|
|
|
|
``cmake/llvm/`` within the lib directory. On Linux, this is typically
|
|
|
|
``/usr/lib/cmake/llvm/LLVMConfig.cmake``.
|
2014-07-28 13:36:37 +00:00
|
|
|
|
2016-02-04 20:08:19 +00:00
|
|
|
* ``<LLVM_BUILD_ROOT>/lib/cmake/llvm/LLVMConfig.cmake`` where
|
2015-08-25 00:09:47 +00:00
|
|
|
``<LLVM_BUILD_ROOT>`` is the root of the LLVM build tree. **Note: this is only
|
|
|
|
available when building LLVM with CMake.**
|
2014-07-28 13:36:37 +00:00
|
|
|
|
|
|
|
If LLVM is installed in your operating system's normal installation prefix (e.g.
|
|
|
|
on Linux this is usually ``/usr/``) ``find_package(LLVM ...)`` will
|
|
|
|
automatically find LLVM if it is installed correctly. If LLVM is not installed
|
|
|
|
or you wish to build directly against the LLVM build tree you can use
|
|
|
|
``LLVM_DIR`` as previously mentioned.
|
|
|
|
|
|
|
|
The ``LLVMConfig.cmake`` file sets various useful variables. Notable variables
|
|
|
|
include
|
|
|
|
|
|
|
|
``LLVM_CMAKE_DIR``
|
|
|
|
The path to the LLVM CMake directory (i.e. the directory containing
|
|
|
|
LLVMConfig.cmake).
|
|
|
|
|
|
|
|
``LLVM_DEFINITIONS``
|
|
|
|
A list of preprocessor defines that should be used when building against LLVM.
|
|
|
|
|
|
|
|
``LLVM_ENABLE_ASSERTIONS``
|
|
|
|
This is set to ON if LLVM was built with assertions, otherwise OFF.
|
|
|
|
|
|
|
|
``LLVM_ENABLE_EH``
|
|
|
|
This is set to ON if LLVM was built with exception handling (EH) enabled,
|
|
|
|
otherwise OFF.
|
|
|
|
|
|
|
|
``LLVM_ENABLE_RTTI``
|
|
|
|
This is set to ON if LLVM was built with run time type information (RTTI),
|
|
|
|
otherwise OFF.
|
2012-07-06 05:51:50 +00:00
|
|
|
|
2016-09-01 16:43:39 +00:00
|
|
|
``LLVM_INCLUDE_DIRS``
|
|
|
|
A list of include paths to directories containing LLVM header files.
|
2012-07-06 05:51:50 +00:00
|
|
|
|
2014-07-28 13:36:37 +00:00
|
|
|
``LLVM_PACKAGE_VERSION``
|
2015-08-25 00:09:47 +00:00
|
|
|
The LLVM version. This string can be used with CMake conditionals, e.g., ``if
|
2014-07-28 13:36:37 +00:00
|
|
|
(${LLVM_PACKAGE_VERSION} VERSION_LESS "3.5")``.
|
2012-07-06 05:51:50 +00:00
|
|
|
|
2014-07-28 13:36:37 +00:00
|
|
|
``LLVM_TOOLS_BINARY_DIR``
|
|
|
|
The path to the directory containing the LLVM tools (e.g. ``llvm-as``).
|
2012-07-06 05:51:50 +00:00
|
|
|
|
2014-07-28 13:36:37 +00:00
|
|
|
Notice that in the above example we link ``simple-tool`` against several LLVM
|
|
|
|
libraries. The list of libraries is determined by using the
|
|
|
|
``llvm_map_components_to_libnames()`` CMake function. For a list of available
|
|
|
|
components look at the output of running ``llvm-config --components``.
|
2012-07-06 05:51:50 +00:00
|
|
|
|
2014-07-28 13:36:37 +00:00
|
|
|
Note that for LLVM < 3.5 ``llvm_map_components_to_libraries()`` was
|
|
|
|
used instead of ``llvm_map_components_to_libnames()``. This is now deprecated
|
|
|
|
and will be removed in a future version of LLVM.
|
2012-07-06 05:51:50 +00:00
|
|
|
|
2012-12-12 17:02:44 +00:00
|
|
|
.. _cmake-out-of-source-pass:
|
|
|
|
|
2014-07-28 13:36:37 +00:00
|
|
|
Developing LLVM passes out of source
|
|
|
|
------------------------------------
|
2012-07-06 05:51:50 +00:00
|
|
|
|
2014-07-28 13:36:37 +00:00
|
|
|
It is possible to develop LLVM passes out of LLVM's source tree (i.e. against an
|
|
|
|
installed or built LLVM). An example of a project layout is provided below.
|
2012-07-06 05:51:50 +00:00
|
|
|
|
2012-12-12 14:23:14 +00:00
|
|
|
.. code-block:: none
|
2012-07-06 05:51:50 +00:00
|
|
|
|
|
|
|
<project dir>/
|
|
|
|
|
|
|
|
|
CMakeLists.txt
|
|
|
|
<pass name>/
|
|
|
|
|
|
|
|
|
CMakeLists.txt
|
|
|
|
Pass.cpp
|
|
|
|
...
|
|
|
|
|
|
|
|
Contents of ``<project dir>/CMakeLists.txt``:
|
|
|
|
|
|
|
|
.. code-block:: cmake
|
|
|
|
|
2014-07-28 13:36:37 +00:00
|
|
|
find_package(LLVM REQUIRED CONFIG)
|
2012-07-06 05:51:50 +00:00
|
|
|
|
2021-05-24 23:16:10 +03:00
|
|
|
separate_arguments(LLVM_DEFINITIONS_LIST NATIVE_COMMAND ${LLVM_DEFINITIONS})
|
|
|
|
add_definitions(${LLVM_DEFINITIONS_LIST})
|
2016-09-01 16:43:39 +00:00
|
|
|
include_directories(${LLVM_INCLUDE_DIRS})
|
2012-07-06 05:51:50 +00:00
|
|
|
|
|
|
|
add_subdirectory(<pass name>)
|
|
|
|
|
|
|
|
Contents of ``<project dir>/<pass name>/CMakeLists.txt``:
|
|
|
|
|
2014-07-28 13:36:37 +00:00
|
|
|
.. code-block:: cmake
|
|
|
|
|
|
|
|
add_library(LLVMPassname MODULE Pass.cpp)
|
|
|
|
|
|
|
|
Note if you intend for this pass to be merged into the LLVM source tree at some
|
|
|
|
point in the future it might make more sense to use LLVM's internal
|
2019-01-04 16:35:01 +00:00
|
|
|
``add_llvm_library`` function with the MODULE argument instead by...
|
2014-07-28 13:36:37 +00:00
|
|
|
|
|
|
|
|
|
|
|
Adding the following to ``<project dir>/CMakeLists.txt`` (after
|
|
|
|
``find_package(LLVM ...)``)
|
|
|
|
|
|
|
|
.. code-block:: cmake
|
|
|
|
|
|
|
|
list(APPEND CMAKE_MODULE_PATH "${LLVM_CMAKE_DIR}")
|
|
|
|
include(AddLLVM)
|
|
|
|
|
|
|
|
And then changing ``<project dir>/<pass name>/CMakeLists.txt`` to
|
|
|
|
|
2012-07-06 05:51:50 +00:00
|
|
|
.. code-block:: cmake
|
|
|
|
|
2018-12-20 22:04:08 +00:00
|
|
|
add_llvm_library(LLVMPassname MODULE
|
2012-07-06 05:51:50 +00:00
|
|
|
Pass.cpp
|
|
|
|
)
|
|
|
|
|
|
|
|
When you are done developing your pass, you may wish to integrate it
|
2015-08-25 00:09:47 +00:00
|
|
|
into the LLVM source tree. You can achieve it in two easy steps:
|
2012-07-06 05:51:50 +00:00
|
|
|
|
2024-01-04 14:02:25 +00:00
|
|
|
#. Copying ``<pass name>`` folder into ``<LLVM root>/lib/Transforms`` directory.
|
2012-07-06 05:51:50 +00:00
|
|
|
|
|
|
|
#. Adding ``add_subdirectory(<pass name>)`` line into
|
2024-01-04 14:02:25 +00:00
|
|
|
``<LLVM root>/lib/Transforms/CMakeLists.txt``.
|
2012-07-06 05:51:50 +00:00
|
|
|
|
2014-06-30 18:57:16 +00:00
|
|
|
Compiler/Platform-specific topics
|
2012-07-06 05:51:50 +00:00
|
|
|
=================================
|
|
|
|
|
|
|
|
Notes for specific compilers and/or platforms.
|
|
|
|
|
2022-07-14 15:31:53 +02:00
|
|
|
Windows
|
|
|
|
-------
|
2012-07-06 05:51:50 +00:00
|
|
|
|
|
|
|
**LLVM_COMPILER_JOBS**:STRING
|
2015-08-25 00:09:47 +00:00
|
|
|
Specifies the maximum number of parallel compiler jobs to use per project
|
2013-07-23 17:44:01 +00:00
|
|
|
when building with msbuild or Visual Studio. Only supported for the Visual
|
|
|
|
Studio 2010 CMake generator. 0 means use all processors. Default is 0.
|
2022-07-14 15:31:53 +02:00
|
|
|
|
|
|
|
**CMAKE_MT**:STRING
|
|
|
|
When compiling with clang-cl, recent CMake versions will default to selecting
|
|
|
|
`llvm-mt` as the Manifest Tool instead of Microsoft's `mt.exe`. This will
|
|
|
|
often cause errors like:
|
|
|
|
|
|
|
|
.. code-block:: console
|
|
|
|
|
|
|
|
-- Check for working C compiler: [...]clang-cl.exe - broken
|
|
|
|
[...]
|
|
|
|
MT: command [...] failed (exit code 0x1) with the following output:
|
|
|
|
llvm-mt: error: no libxml2
|
|
|
|
ninja: build stopped: subcommand failed.
|
|
|
|
|
|
|
|
To work around this error, set `CMAKE_MT=mt`.
|