Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / docs / CMake.rst
blob17b76996af85739fff1472df58a8d4479c471b31
1 ========================
2 Building LLVM with CMake
3 ========================
5 .. contents::
6    :local:
8 Introduction
9 ============
11 `CMake <http://www.cmake.org/>`_ is a cross-platform build-generator tool. CMake
12 does not build the project, it generates the files needed by your build tool
13 (GNU make, Visual Studio, etc.) for building LLVM.
15 If **you are a new contributor**, please start with the :doc:`GettingStarted`
16 page.  This page is geared for existing contributors moving from the
17 legacy configure/make system.
19 If you are really anxious about getting a functional LLVM build, go to the
20 `Quick start`_ section. If you are a CMake novice, start with `Basic CMake usage`_
21 and then go back to the `Quick start`_ section once you know what you are doing. The
22 `Options and variables`_ section is a reference for customizing your build. If
23 you already have experience with CMake, this is the recommended starting point.
25 This page is geared towards users of the LLVM CMake build. If you're looking for
26 information about modifying the LLVM CMake build system you may want to see the
27 :doc:`CMakePrimer` page. It has a basic overview of the CMake language.
29 .. _Quick start:
31 Quick start
32 ===========
34 We use here the command-line, non-interactive CMake interface.
36 #. `Download <http://www.cmake.org/cmake/resources/software.html>`_ and install
37    CMake. Version 3.20.0 is the minimum required.
39 #. Open a shell. Your development tools must be reachable from this shell
40    through the PATH environment variable.
42 #. Create a build directory. Building LLVM in the source
43    directory is not supported. cd to this directory:
45    .. code-block:: console
47      $ mkdir mybuilddir
48      $ cd mybuilddir
50 #. Execute this command in the shell replacing `path/to/llvm/source/root` with
51    the path to the root of your LLVM source tree:
53    .. code-block:: console
55      $ cmake path/to/llvm/source/root
57    CMake will detect your development environment, perform a series of tests, and
58    generate the files required for building LLVM. CMake will use default values
59    for all build parameters. See the `Options and variables`_ section for
60    a list of build parameters that you can modify.
62    This can fail if CMake can't detect your toolset, or if it thinks that the
63    environment is not sane enough. In this case, make sure that the toolset that
64    you intend to use is the only one reachable from the shell, and that the shell
65    itself is the correct one for your development environment. CMake will refuse
66    to build MinGW makefiles if you have a POSIX shell reachable through the PATH
67    environment variable, for instance. You can force CMake to use a given build
68    tool; for instructions, see the `Usage`_ section, below.  You may
69    also wish to control which targets LLVM enables, or which LLVM
70    components are built; see the `Frequently Used LLVM-related
71    variables`_ below.
73 #. After CMake has finished running, proceed to use IDE project files, or start
74    the build from the build directory:
76    .. code-block:: console
78      $ cmake --build .
80    The ``--build`` option tells ``cmake`` to invoke the underlying build
81    tool (``make``, ``ninja``, ``xcodebuild``, ``msbuild``, etc.)
83    The underlying build tool can be invoked directly, of course, but
84    the ``--build`` option is portable.
86 #. After LLVM has finished building, install it from the build directory:
88    .. code-block:: console
90      $ cmake --build . --target install
92    The ``--target`` option with ``install`` parameter in addition to
93    the ``--build`` option tells ``cmake`` to build the ``install`` target.
95    It is possible to set a different install prefix at installation time
96    by invoking the ``cmake_install.cmake`` script generated in the
97    build directory:
99    .. code-block:: console
101      $ cmake -DCMAKE_INSTALL_PREFIX=/tmp/llvm -P cmake_install.cmake
103 .. _Basic CMake usage:
104 .. _Usage:
106 Basic CMake usage
107 =================
109 This section explains basic aspects of CMake
110 which you may need in your day-to-day usage.
112 CMake comes with extensive documentation, in the form of html files, and as
113 online help accessible via the ``cmake`` executable itself. Execute ``cmake
114 --help`` for further help options.
116 CMake allows you to specify a build tool (e.g., GNU make, Visual Studio,
117 or Xcode). If not specified on the command line, CMake tries to guess which
118 build tool to use, based on your environment. Once it has identified your
119 build tool, CMake uses the corresponding *Generator* to create files for your
120 build tool (e.g., Makefiles or Visual Studio or Xcode project files). You can
121 explicitly specify the generator with the command line option ``-G "Name of the
122 generator"``. To see a list of the available generators on your system, execute
124 .. code-block:: console
126   $ cmake --help
128 This will list the generator names at the end of the help text.
130 Generators' names are case-sensitive, and may contain spaces. For this reason,
131 you should enter them exactly as they are listed in the ``cmake --help``
132 output, in quotes. For example, to generate project files specifically for
133 Visual Studio 12, you can execute:
135 .. code-block:: console
137   $ cmake -G "Visual Studio 12" path/to/llvm/source/root
139 For a given development platform there can be more than one adequate
140 generator. If you use Visual Studio, "NMake Makefiles" is a generator you can use
141 for building with NMake. By default, CMake chooses the most specific generator
142 supported by your development environment. If you want an alternative generator,
143 you must tell this to CMake with the ``-G`` option.
145 .. todo::
147   Explain variables and cache. Move explanation here from #options section.
149 .. _Options and variables:
151 Options and variables
152 =====================
154 Variables customize how the build will be generated. Options are boolean
155 variables, with possible values ON/OFF. Options and variables are defined on the
156 CMake command line like this:
158 .. code-block:: console
160   $ cmake -DVARIABLE=value path/to/llvm/source
162 You can set a variable after the initial CMake invocation to change its
163 value. You can also undefine a variable:
165 .. code-block:: console
167   $ cmake -UVARIABLE path/to/llvm/source
169 Variables are stored in the CMake cache. This is a file named ``CMakeCache.txt``
170 stored at the root of your build directory that is generated by ``cmake``.
171 Editing it yourself is not recommended.
173 Variables are listed in the CMake cache and later in this document with
174 the variable name and type separated by a colon. You can also specify the
175 variable and type on the CMake command line:
177 .. code-block:: console
179   $ cmake -DVARIABLE:TYPE=value path/to/llvm/source
181 Frequently-used CMake variables
182 -------------------------------
184 Here are some of the CMake variables that are used often, along with a
185 brief explanation. For full documentation, consult the CMake manual,
186 or execute ``cmake --help-variable VARIABLE_NAME``.  See `Frequently
187 Used LLVM-related Variables`_ below for information about commonly
188 used variables that control features of LLVM and enabled subprojects.
190 .. _cmake_build_type:
192 **CMAKE_BUILD_TYPE**:STRING
193   This configures the optimization level for ``make`` or ``ninja`` builds.
195   Possible values:
197   =========================== ============= ========== ========== ==========================
198   Build Type                  Optimizations Debug Info Assertions Best suited for
199   =========================== ============= ========== ========== ==========================
200   **Release**                 For Speed     No         No         Users of LLVM and Clang
201   **Debug**                   None          Yes        Yes        Developers of LLVM
202   **RelWithDebInfo**          For Speed     Yes        No         Users that also need Debug
203   **MinSizeRel**              For Size      No         No         When disk space matters
204   =========================== ============= ========== ========== ==========================
206   * Optimizations make LLVM/Clang run faster, but can be an impediment for
207     step-by-step debugging.
208   * Builds with debug information can use a lot of RAM and disk space and is
209     usually slower to run. You can improve RAM usage by using ``lld``, see
210     the :ref:`LLVM_USE_LINKER <llvm_use_linker>` option.
211   * Assertions are internal checks to help you find bugs. They typically slow
212     down LLVM and Clang when enabled, but can be useful during development.
213     You can manually set :ref:`LLVM_ENABLE_ASSERTIONS <llvm_enable_assertions>`
214     to override the default from `CMAKE_BUILD_TYPE`.
216   If you are using an IDE such as Visual Studio or Xcode, you should use
217   the IDE settings to set the build type.
219 **CMAKE_INSTALL_PREFIX**:PATH
220   Path where LLVM will be installed when the "install" target is built.
222 **CMAKE_{C,CXX}_FLAGS**:STRING
223   Extra flags to use when compiling C and C++ source files respectively.
225 **CMAKE_{C,CXX}_COMPILER**:STRING
226   Specify the C and C++ compilers to use. If you have multiple
227   compilers installed, CMake might not default to the one you wish to
228   use.
230 .. _Frequently Used LLVM-related variables:
232 Frequently Used LLVM-related variables
233 --------------------------------------
235 The default configuration may not match your requirements. Here are
236 LLVM variables that are frequently used to control that. The full
237 description is in `LLVM-related variables`_ below.
239 **LLVM_ENABLE_PROJECTS**:STRING
240   Control which projects are enabled. For example you may want to work on clang
241   or lldb by specifying ``-DLLVM_ENABLE_PROJECTS="clang;lldb"``.
243 **LLVM_ENABLE_RUNTIMES**:STRING
244   Control which runtimes are enabled. For example you may want to work on
245   libc++ or libc++abi by specifying ``-DLLVM_ENABLE_RUNTIMES="libcxx;libcxxabi"``.
247 **LLVM_LIBDIR_SUFFIX**:STRING
248   Extra suffix to append to the directory where libraries are to be
249   installed. On a 64-bit architecture, one could use ``-DLLVM_LIBDIR_SUFFIX=64``
250   to install libraries to ``/usr/lib64``.
252 **LLVM_PARALLEL_{COMPILE,LINK}_JOBS**:STRING
253   Building the llvm toolchain can use a lot of resources, particularly
254   linking. These options, when you use the Ninja generator, allow you
255   to restrict the parallelism. For example, to avoid OOMs or going
256   into swap, permit only one link job per 15GB of RAM available on a
257   32GB machine, specify ``-G Ninja -DLLVM_PARALLEL_LINK_JOBS=2``.
259 **LLVM_TARGETS_TO_BUILD**:STRING
260   Control which targets are enabled. For example you may only need to enable
261   your native target with, for example, ``-DLLVM_TARGETS_TO_BUILD=X86``.
263 .. _llvm_use_linker:
265 **LLVM_USE_LINKER**:STRING
266   Override the system's default linker. For instance use ``lld`` with
267   ``-DLLVM_USE_LINKER=lld``.
269 Rarely-used CMake variables
270 ---------------------------
272 Here are some of the CMake variables that are rarely used, along with a brief
273 explanation and LLVM-related notes.  For full documentation, consult the CMake
274 manual, or execute ``cmake --help-variable VARIABLE_NAME``.
276 **CMAKE_CXX_STANDARD**:STRING
277   Sets the C++ standard to conform to when building LLVM.  Possible values are
278   17 and 20.  LLVM Requires C++ 17 or higher.  This defaults to 17.
280 **CMAKE_INSTALL_BINDIR**:PATH
281   The path to install executables, relative to the *CMAKE_INSTALL_PREFIX*.
282   Defaults to "bin".
284 **CMAKE_INSTALL_INCLUDEDIR**:PATH
285   The path to install header files, relative to the *CMAKE_INSTALL_PREFIX*.
286   Defaults to "include".
288 **CMAKE_INSTALL_DOCDIR**:PATH
289   The path to install documentation, relative to the *CMAKE_INSTALL_PREFIX*.
290   Defaults to "share/doc".
292 **CMAKE_INSTALL_MANDIR**:PATH
293   The path to install manpage files, relative to the *CMAKE_INSTALL_PREFIX*.
294   Defaults to "share/man".
296 .. _LLVM-related variables:
298 LLVM-related variables
299 -----------------------
301 These variables provide fine control over the build of LLVM and
302 enabled sub-projects. Nearly all of these variable names begin with
303 ``LLVM_``.
305 **BUILD_SHARED_LIBS**:BOOL
306   Flag indicating if each LLVM component (e.g. Support) is built as a shared
307   library (ON) or as a static library (OFF). Its default value is OFF. On
308   Windows, shared libraries may be used when building with MinGW, including
309   mingw-w64, but not when building with the Microsoft toolchain.
311   .. note:: BUILD_SHARED_LIBS is only recommended for use by LLVM developers.
312             If you want to build LLVM as a shared library, you should use the
313             ``LLVM_BUILD_LLVM_DYLIB`` option.
315 **LLVM_ABI_BREAKING_CHECKS**:STRING
316   Used to decide if LLVM should be built with ABI breaking checks or
317   not.  Allowed values are `WITH_ASSERTS` (default), `FORCE_ON` and
318   `FORCE_OFF`.  `WITH_ASSERTS` turns on ABI breaking checks in an
319   assertion enabled build.  `FORCE_ON` (`FORCE_OFF`) turns them on
320   (off) irrespective of whether normal (`NDEBUG`-based) assertions are
321   enabled or not.  A version of LLVM built with ABI breaking checks
322   is not ABI compatible with a version built without it.
324 **LLVM_UNREACHABLE_OPTIMIZE**:BOOL
325   This flag controls the behavior of `llvm_unreachable()` in release build
326   (when assertions are disabled in general). When ON (default) then
327   `llvm_unreachable()` is considered "undefined behavior" and optimized as
328   such. When OFF it is instead replaced with a guaranteed "trap".
330 **LLVM_APPEND_VC_REV**:BOOL
331   Embed version control revision info (Git revision id).
332   The version info is provided by the ``LLVM_REVISION`` macro in
333   ``llvm/include/llvm/Support/VCSRevision.h``. Developers using git who don't
334   need revision info can disable this option to avoid re-linking most binaries
335   after a branch switch. Defaults to ON.
337 **LLVM_FORCE_VC_REVISION**:STRING
338   Force a specific Git revision id rather than calling to git to determine it.
339   This is useful in environments where git is not available or non-functional
340   but the VC revision is available through other means.
342 **LLVM_FORCE_VC_REPOSITORY**:STRING
343   Set the git repository to include in version info rather than calling git to
344   determine it.
346 **LLVM_BUILD_32_BITS**:BOOL
347   Build 32-bit executables and libraries on 64-bit systems. This option is
348   available only on some 64-bit Unix systems. Defaults to OFF.
350 **LLVM_BUILD_BENCHMARKS**:BOOL
351   Adds benchmarks to the list of default targets. Defaults to OFF.
353 **LLVM_BUILD_DOCS**:BOOL
354   Adds all *enabled* documentation targets (i.e. Doxgyen and Sphinx targets) as
355   dependencies of the default build targets.  This results in all of the (enabled)
356   documentation targets being as part of a normal build.  If the ``install``
357   target is run then this also enables all built documentation targets to be
358   installed. Defaults to OFF.  To enable a particular documentation target, see
359   see LLVM_ENABLE_SPHINX and LLVM_ENABLE_DOXYGEN.
361 **LLVM_BUILD_EXAMPLES**:BOOL
362   Build LLVM examples. Defaults to OFF. Targets for building each example are
363   generated in any case. See documentation for *LLVM_BUILD_TOOLS* above for more
364   details.
366 **LLVM_BUILD_INSTRUMENTED_COVERAGE**:BOOL
367   If enabled, `source-based code coverage
368   <https://clang.llvm.org/docs/SourceBasedCodeCoverage.html>`_ instrumentation
369   is enabled while building llvm. If CMake can locate the code coverage
370   scripts and the llvm-cov and llvm-profdata tools that pair to your compiler,
371   the build will also generate the `generate-coverage-report` target to generate
372   the code coverage report for LLVM, and the `clear-profile-data` utility target
373   to delete captured profile data. See documentation for
374   *LLVM_CODE_COVERAGE_TARGETS* and *LLVM_COVERAGE_SOURCE_DIRS* for more
375   information on configuring code coverage reports.
377 **LLVM_CODE_COVERAGE_TARGETS**:STRING
378   If set to a semicolon separated list of targets, those targets will be used
379   to drive the code coverage reports. If unset, the target list will be
380   constructed using the LLVM build's CMake export list.
382 **LLVM_COVERAGE_SOURCE_DIRS**:STRING
383   If set to a semicolon separated list of directories, the coverage reports
384   will limit code coverage summaries to just the listed directories. If unset,
385   coverage reports will include all sources identified by the tooling.
387  **LLVM_INDIVIDUAL_TEST_COVERAGE**: BOOL
388   Enable individual test case coverage. When set to ON, code coverage data for
389   each test case will be generated and stored in a separate directory under the
390   config.test_exec_root path. This feature allows code coverage analysis of each
391   individual test case. Defaults to OFF.
393 **LLVM_BUILD_LLVM_DYLIB**:BOOL
394   If enabled, the target for building the libLLVM shared library is added.
395   This library contains all of LLVM's components in a single shared library.
396   Defaults to OFF. This cannot be used in conjunction with BUILD_SHARED_LIBS.
397   Tools will only be linked to the libLLVM shared library if LLVM_LINK_LLVM_DYLIB
398   is also ON.
399   The components in the library can be customised by setting LLVM_DYLIB_COMPONENTS
400   to a list of the desired components.
401   This option is not available on Windows.
403 **LLVM_BUILD_TESTS**:BOOL
404   Include LLVM unit tests in the 'all' build target. Defaults to OFF. Targets
405   for building each unit test are generated in any case. You can build a
406   specific unit test using the targets defined under *unittests*, such as
407   ADTTests, IRTests, SupportTests, etc. (Search for ``add_llvm_unittest`` in
408   the subdirectories of *unittests* for a complete list of unit tests.) It is
409   possible to build all unit tests with the target *UnitTests*.
411 **LLVM_BUILD_TOOLS**:BOOL
412   Build LLVM tools. Defaults to ON. Targets for building each tool are generated
413   in any case. You can build a tool separately by invoking its target. For
414   example, you can build *llvm-as* with a Makefile-based system by executing *make
415   llvm-as* at the root of your build directory.
417 **LLVM_CCACHE_BUILD**:BOOL
418   If enabled and the ``ccache`` program is available, then LLVM will be
419   built using ``ccache`` to speed up rebuilds of LLVM and its components.
420   Defaults to OFF.  The size and location of the cache maintained
421   by ``ccache`` can be adjusted via the LLVM_CCACHE_MAXSIZE and LLVM_CCACHE_DIR
422   options, which are passed to the CCACHE_MAXSIZE and CCACHE_DIR environment
423   variables, respectively.
425 **LLVM_CREATE_XCODE_TOOLCHAIN**:BOOL
426   macOS Only: If enabled CMake will generate a target named
427   'install-xcode-toolchain'. This target will create a directory at
428   $CMAKE_INSTALL_PREFIX/Toolchains containing an xctoolchain directory which can
429   be used to override the default system tools.
431 **LLVM_<target>_LINKER_FLAGS**:STRING
432   Defines the set of linker flags that should be applied to a <target>.
434 **LLVM_DEFAULT_TARGET_TRIPLE**:STRING
435   LLVM target to use for code generation when no target is explicitly specified.
436   It defaults to "host", meaning that it shall pick the architecture
437   of the machine where LLVM is being built. If you are building a cross-compiler,
438   set it to the target triple of your desired architecture.
440 **LLVM_DOXYGEN_QCH_FILENAME**:STRING
441   The filename of the Qt Compressed Help file that will be generated when
442   ``-DLLVM_ENABLE_DOXYGEN=ON`` and
443   ``-DLLVM_ENABLE_DOXYGEN_QT_HELP=ON`` are given. Defaults to
444   ``org.llvm.qch``.
445   This option is only useful in combination with
446   ``-DLLVM_ENABLE_DOXYGEN_QT_HELP=ON``;
447   otherwise it has no effect.
449 **LLVM_DOXYGEN_QHELPGENERATOR_PATH**:STRING
450   The path to the ``qhelpgenerator`` executable. Defaults to whatever CMake's
451   ``find_program()`` can find. This option is only useful in combination with
452   ``-DLLVM_ENABLE_DOXYGEN_QT_HELP=ON``; otherwise it has no
453   effect.
455 **LLVM_DOXYGEN_QHP_CUST_FILTER_NAME**:STRING
456   See `Qt Help Project`_ for
457   more information. Defaults to the CMake variable ``${PACKAGE_STRING}`` which
458   is a combination of the package name and version string. This filter can then
459   be used in Qt Creator to select only documentation from LLVM when browsing
460   through all the help files that you might have loaded. This option is only
461   useful in combination with ``-DLLVM_ENABLE_DOXYGEN_QT_HELP=ON``;
462   otherwise it has no effect.
464 .. _Qt Help Project: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom-filters
466 **LLVM_DOXYGEN_QHP_NAMESPACE**:STRING
467   Namespace under which the intermediate Qt Help Project file lives. See `Qt
468   Help Project`_
469   for more information. Defaults to "org.llvm". This option is only useful in
470   combination with ``-DLLVM_ENABLE_DOXYGEN_QT_HELP=ON``; otherwise
471   it has no effect.
473 **LLVM_DOXYGEN_SVG**:BOOL
474   Uses .svg files instead of .png files for graphs in the Doxygen output.
475   Defaults to OFF.
477 .. _llvm_enable_assertions:
479 **LLVM_ENABLE_ASSERTIONS**:BOOL
480   Enables code assertions. Defaults to ON if and only if ``CMAKE_BUILD_TYPE``
481   is *Debug*.
483 **LLVM_ENABLE_BINDINGS**:BOOL
484   If disabled, do not try to build the OCaml bindings.
486 **LLVM_ENABLE_DIA_SDK**:BOOL
487   Enable building with MSVC DIA SDK for PDB debugging support. Available
488   only with MSVC. Defaults to ON.
490 **LLVM_ENABLE_DOXYGEN**:BOOL
491   Enables the generation of browsable HTML documentation using doxygen.
492   Defaults to OFF.
494 **LLVM_ENABLE_DOXYGEN_QT_HELP**:BOOL
495   Enables the generation of a Qt Compressed Help file. Defaults to OFF.
496   This affects the make target ``doxygen-llvm``. When enabled, apart from
497   the normal HTML output generated by doxygen, this will produce a QCH file
498   named ``org.llvm.qch``. You can then load this file into Qt Creator.
499   This option is only useful in combination with ``-DLLVM_ENABLE_DOXYGEN=ON``;
500   otherwise this has no effect.
502 **LLVM_ENABLE_EH**:BOOL
503   Build LLVM with exception-handling support. This is necessary if you wish to
504   link against LLVM libraries and make use of C++ exceptions in your own code
505   that need to propagate through LLVM code. Defaults to OFF.
507 **LLVM_ENABLE_EXPENSIVE_CHECKS**:BOOL
508   Enable additional time/memory expensive checking. Defaults to OFF.
510 **LLVM_ENABLE_HTTPLIB**:BOOL
511   Enables the optional cpp-httplib dependency which is used by llvm-debuginfod
512   to serve debug info over HTTP. `cpp-httplib <https://github.com/yhirose/cpp-httplib>`_
513   must be installed, or `httplib_ROOT` must be set. Defaults to OFF.
515 **LLVM_ENABLE_FFI**:BOOL
516   Indicates whether the LLVM Interpreter will be linked with the Foreign Function
517   Interface library (libffi) in order to enable calling external functions.
518   If the library or its headers are installed in a custom
519   location, you can also set the variables FFI_INCLUDE_DIR and
520   FFI_LIBRARY_DIR to the directories where ffi.h and libffi.so can be found,
521   respectively. Defaults to OFF.
523 **LLVM_ENABLE_IDE**:BOOL
524   Tell the build system that an IDE is being used. This in turn disables the
525   creation of certain convenience build system targets, such as the various
526   ``install-*`` and ``check-*`` targets, since IDEs don't always deal well with
527   a large number of targets. This is usually autodetected, but it can be
528   configured manually to explicitly control the generation of those targets.
530 **LLVM_ENABLE_LIBCXX**:BOOL
531   If the host compiler and linker supports the stdlib flag, -stdlib=libc++ is
532   passed to invocations of both so that the project is built using libc++
533   instead of stdlibc++. Defaults to OFF.
535 **LLVM_ENABLE_LLVM_LIBC**: BOOL
536   If the LLVM libc overlay is installed in a location where the host linker
537   can access it, all built executables will be linked against the LLVM libc
538   overlay before linking against the system libc. Defaults to OFF.
540 **LLVM_ENABLE_LIBPFM**:BOOL
541   Enable building with libpfm to support hardware counter measurements in LLVM
542   tools.
543   Defaults to ON.
545 **LLVM_ENABLE_LLD**:BOOL
546   This option is equivalent to `-DLLVM_USE_LINKER=lld`, except during a 2-stage
547   build where a dependency is added from the first stage to the second ensuring
548   that lld is built before stage2 begins.
550 **LLVM_ENABLE_LTO**:STRING
551   Add ``-flto`` or ``-flto=`` flags to the compile and link command
552   lines, enabling link-time optimization. Possible values are ``Off``,
553   ``On``, ``Thin`` and ``Full``. Defaults to OFF.
555 **LLVM_ENABLE_MODULES**:BOOL
556   Compile with `Clang Header Modules
557   <https://clang.llvm.org/docs/Modules.html>`_.
559 **LLVM_ENABLE_PEDANTIC**:BOOL
560   Enable pedantic mode. This disables compiler-specific extensions, if
561   possible. Defaults to ON.
563 **LLVM_ENABLE_PIC**:BOOL
564   Add the ``-fPIC`` flag to the compiler command-line, if the compiler supports
565   this flag. Some systems, like Windows, do not need this flag. Defaults to ON.
567 **LLVM_ENABLE_PROJECTS**:STRING
568   Semicolon-separated list of projects to build, or *all* for building all
569   (clang, lldb, lld, polly, etc) projects. This flag assumes that projects
570   are checked out side-by-side and not nested, i.e. clang needs to be in
571   parallel of llvm instead of nested in `llvm/tools`. This feature allows
572   to have one build for only LLVM and another for clang+llvm using the same
573   source checkout.
574   The full list is:
575   ``clang;clang-tools-extra;cross-project-tests;libc;libclc;lld;lldb;openmp;polly;pstl``
577 **LLVM_ENABLE_RUNTIMES**:STRING
578   Build libc++, libc++abi, libunwind or compiler-rt using the just-built compiler.
579   This is the correct way to build runtimes when putting together a toolchain.
580   It will build the builtins separately from the other runtimes to preserve
581   correct dependency ordering. If you want to build the runtimes using a system
582   compiler, see the `libc++ documentation <https://libcxx.llvm.org/BuildingLibcxx.html>`_.
583   Note: the list should not have duplicates with `LLVM_ENABLE_PROJECTS`.
584   The full list is:
585   ``compiler-rt;libc;libcxx;libcxxabi;libunwind;openmp``
586   To enable all of them, use:
587   ``LLVM_ENABLE_RUNTIMES=all``
590 **LLVM_ENABLE_RTTI**:BOOL
591   Build LLVM with run-time type information. Defaults to OFF.
593 **LLVM_ENABLE_SPHINX**:BOOL
594   If specified, CMake will search for the ``sphinx-build`` executable and will make
595   the ``SPHINX_OUTPUT_HTML`` and ``SPHINX_OUTPUT_MAN`` CMake options available.
596   Defaults to OFF.
598 **LLVM_ENABLE_THREADS**:BOOL
599   Build with threads support, if available. Defaults to ON.
601 **LLVM_ENABLE_UNWIND_TABLES**:BOOL
602   Enable unwind tables in the binary.  Disabling unwind tables can reduce the
603   size of the libraries.  Defaults to ON.
605 **LLVM_ENABLE_WARNINGS**:BOOL
606   Enable all compiler warnings. Defaults to ON.
608 **LLVM_ENABLE_WERROR**:BOOL
609   Stop and fail the build, if a compiler warning is triggered. Defaults to OFF.
611 **LLVM_ENABLE_Z3_SOLVER**:BOOL
612   If enabled, the Z3 constraint solver is activated for the Clang static analyzer.
613   A recent version of the z3 library needs to be available on the system.
615 **LLVM_ENABLE_ZLIB**:STRING
616   Used to decide if LLVM tools should support compression/decompression with
617   zlib. Allowed values are ``OFF``, ``ON`` (default, enable if zlib is found),
618   and ``FORCE_ON`` (error if zlib is not found).
620 **LLVM_ENABLE_ZSTD**:STRING
621   Used to decide if LLVM tools should support compression/decompression with
622   zstd. Allowed values are ``OFF``, ``ON`` (default, enable if zstd is found),
623   and ``FORCE_ON`` (error if zstd is not found).
625 **LLVM_EXPERIMENTAL_TARGETS_TO_BUILD**:STRING
626   Semicolon-separated list of experimental targets to build and linked into
627   llvm. This will build the experimental target without needing it to add to the
628   list of all the targets available in the LLVM's main CMakeLists.txt.
630 **LLVM_EXTERNAL_{CLANG,LLD,POLLY}_SOURCE_DIR**:PATH
631   These variables specify the path to the source directory for the external
632   LLVM projects Clang, lld, and Polly, respectively, relative to the top-level
633   source directory.  If the in-tree subdirectory for an external project
634   exists (e.g., llvm/tools/clang for Clang), then the corresponding variable
635   will not be used.  If the variable for an external project does not point
636   to a valid path, then that project will not be built.
638 **LLVM_EXTERNAL_PROJECTS**:STRING
639   Semicolon-separated list of additional external projects to build as part of
640   llvm. For each project LLVM_EXTERNAL_<NAME>_SOURCE_DIR have to be specified
641   with the path for the source code of the project. Example:
642   ``-DLLVM_EXTERNAL_PROJECTS="Foo;Bar"
643   -DLLVM_EXTERNAL_FOO_SOURCE_DIR=/src/foo
644   -DLLVM_EXTERNAL_BAR_SOURCE_DIR=/src/bar``.
646 **LLVM_EXTERNALIZE_DEBUGINFO**:BOOL
647   Generate dSYM files and strip executables and libraries (Darwin Only).
648   Defaults to OFF.
650 **LLVM_FORCE_USE_OLD_TOOLCHAIN**:BOOL
651   If enabled, the compiler and standard library versions won't be checked. LLVM
652   may not compile at all, or might fail at runtime due to known bugs in these
653   toolchains.
655 **LLVM_INCLUDE_BENCHMARKS**:BOOL
656   Generate build targets for the LLVM benchmarks. Defaults to ON.
658 **LLVM_INCLUDE_EXAMPLES**:BOOL
659   Generate build targets for the LLVM examples. Defaults to ON. You can use this
660   option to disable the generation of build targets for the LLVM examples.
662 **LLVM_INCLUDE_TESTS**:BOOL
663   Generate build targets for the LLVM unit tests. Defaults to ON. You can use
664   this option to disable the generation of build targets for the LLVM unit
665   tests.
667 **LLVM_INCLUDE_TOOLS**:BOOL
668   Generate build targets for the LLVM tools. Defaults to ON. You can use this
669   option to disable the generation of build targets for the LLVM tools.
671 **LLVM_INSTALL_BINUTILS_SYMLINKS**:BOOL
672   Install symlinks from the binutils tool names to the corresponding LLVM tools.
673   For example, ar will be symlinked to llvm-ar.
675 **LLVM_INSTALL_CCTOOLS_SYMLINKS**:BOOL
676   Install symliks from the cctools tool names to the corresponding LLVM tools.
677   For example, lipo will be symlinked to llvm-lipo.
679 **LLVM_INSTALL_OCAMLDOC_HTML_DIR**:STRING
680   The path to install OCamldoc-generated HTML documentation to. This path can
681   either be absolute or relative to the CMAKE_INSTALL_PREFIX. Defaults to
682   ``${CMAKE_INSTALL_DOCDIR}/llvm/ocaml-html``.
684 **LLVM_INSTALL_SPHINX_HTML_DIR**:STRING
685   The path to install Sphinx-generated HTML documentation to. This path can
686   either be absolute or relative to the CMAKE_INSTALL_PREFIX. Defaults to
687   ``${CMAKE_INSTALL_DOCDIR}/llvm/html``.
689 **LLVM_INSTALL_UTILS**:BOOL
690   If enabled, utility binaries like ``FileCheck`` and ``not`` will be installed
691   to CMAKE_INSTALL_PREFIX.
693 **LLVM_INTEGRATED_CRT_ALLOC**:PATH
694   On Windows, allows embedding a different C runtime allocator into the LLVM
695   tools and libraries. Using a lock-free allocator such as the ones listed below
696   greatly decreases ThinLTO link time by about an order of magnitude. It also
697   midly improves Clang build times, by about 5-10%. At the moment, rpmalloc,
698   snmalloc and mimalloc are supported. Use the path to `git clone` to select
699   the respective allocator, for example:
701   .. code-block:: console
703     $ D:\git> git clone https://github.com/mjansson/rpmalloc
704     $ D:\llvm-project> cmake ... -DLLVM_INTEGRATED_CRT_ALLOC=D:\git\rpmalloc
706   This flag needs to be used along with the static CRT, ie. if building the
707   Release target, add -DCMAKE_MSVC_RUNTIME_LIBRARY=MultiThreaded.
709 **LLVM_INSTALL_DOXYGEN_HTML_DIR**:STRING
710   The path to install Doxygen-generated HTML documentation to. This path can
711   either be absolute or relative to the *CMAKE_INSTALL_PREFIX*. Defaults to
712   ``${CMAKE_INSTALL_DOCDIR}/llvm/doxygen-html``.
714 **LLVM_LINK_LLVM_DYLIB**:BOOL
715   If enabled, tools will be linked with the libLLVM shared library. Defaults
716   to OFF. Setting LLVM_LINK_LLVM_DYLIB to ON also sets LLVM_BUILD_LLVM_DYLIB
717   to ON.
718   This option is not available on Windows.
720 **LLVM_LIT_ARGS**:STRING
721   Arguments given to lit.  ``make check`` and ``make clang-test`` are affected.
722   By default, ``'-sv --no-progress-bar'`` on Visual C++ and Xcode, ``'-sv'`` on
723   others.
725 **LLVM_LIT_TOOLS_DIR**:PATH
726   The path to GnuWin32 tools for tests. Valid on Windows host.  Defaults to
727   the empty string, in which case lit will look for tools needed for tests
728   (e.g. ``grep``, ``sort``, etc.) in your %PATH%. If GnuWin32 is not in your
729   %PATH%, then you can set this variable to the GnuWin32 directory so that
730   lit can find tools needed for tests in that directory.
732 **LLVM_NATIVE_TOOL_DIR**:STRING
733   Full path to a directory containing executables for the build host
734   (containing binaries such as ``llvm-tblgen`` and ``clang-tblgen``). This is
735   intended for cross-compiling: if the user sets this variable and the
736   directory contains executables with the expected names, no separate
737   native versions of those executables will be built.
739 **LLVM_NO_INSTALL_NAME_DIR_FOR_BUILD_TREE**:BOOL
740   Defaults to ``OFF``. If set to ``ON``, CMake's default logic for library IDs
741   on Darwin in the build tree will be used. Otherwise the install-time library
742   IDs will be used in the build tree as well. Mainly useful when other CMake
743   library ID control variables (e.g., ``CMAKE_INSTALL_NAME_DIR``) are being
744   set to non-standard values.
746 **LLVM_OPTIMIZED_TABLEGEN**:BOOL
747   If enabled and building a debug or asserts build the CMake build system will
748   generate a Release build tree to build a fully optimized tablegen for use
749   during the build. Enabling this option can significantly speed up build times
750   especially when building LLVM in Debug configurations.
752 **LLVM_PARALLEL_COMPILE_JOBS**:STRING
753   Define the maximum number of concurrent compilation jobs.
755 **LLVM_PARALLEL_LINK_JOBS**:STRING
756   Define the maximum number of concurrent link jobs.
758 **LLVM_RAM_PER_COMPILE_JOB**:STRING
759   Calculates the amount of Ninja compile jobs according to available resources.
760   Value has to be in MB, overwrites LLVM_PARALLEL_COMPILE_JOBS. Compile jobs 
761   will be between one and amount of logical cores.
763 **LLVM_RAM_PER_LINK_JOB**:STRING
764   Calculates the amount of Ninja link jobs according to available resources.
765   Value has to be in MB, overwrites LLVM_PARALLEL_LINK_JOBS. Link jobs will 
766   be between one and amount of logical cores. Link jobs will not run 
767   exclusively therefore you should add an offset of one or two compile jobs 
768   to be sure its not terminated in your memory restricted environment. On ELF
769   platforms also consider ``LLVM_USE_SPLIT_DWARF`` in Debug build.
771 **LLVM_PROFDATA_FILE**:PATH
772   Path to a profdata file to pass into clang's -fprofile-instr-use flag. This
773   can only be specified if you're building with clang.
775 **LLVM_REVERSE_ITERATION**:BOOL
776   If enabled, all supported unordered llvm containers would be iterated in
777   reverse order. This is useful for uncovering non-determinism caused by
778   iteration of unordered containers.
780 **LLVM_STATIC_LINK_CXX_STDLIB**:BOOL
781   Statically link to the C++ standard library if possible. This uses the flag
782   "-static-libstdc++", but a Clang host compiler will statically link to libc++
783   if used in conjunction with the **LLVM_ENABLE_LIBCXX** flag. Defaults to OFF.
785 **LLVM_TABLEGEN**:STRING
786   Full path to a native TableGen executable (usually named ``llvm-tblgen``). This is
787   intended for cross-compiling: if the user sets this variable, no native
788   TableGen will be created.
790 **LLVM_TARGET_ARCH**:STRING
791   LLVM target to use for native code generation. This is required for JIT
792   generation. It defaults to "host", meaning that it shall pick the architecture
793   of the machine where LLVM is being built. If you are cross-compiling, set it
794   to the target architecture name.
796 **LLVM_TARGETS_TO_BUILD**:STRING
797   Semicolon-separated list of targets to build, or *all* for building all
798   targets. Case-sensitive. Defaults to *all*. Example:
799   ``-DLLVM_TARGETS_TO_BUILD="X86;PowerPC"``.
800   The full list, as of March 2023, is:
801   ``AArch64;AMDGPU;ARM;AVR;BPF;Hexagon;Lanai;LoongArch;Mips;MSP430;NVPTX;PowerPC;RISCV;Sparc;SystemZ;VE;WebAssembly;X86;XCore``
803 **LLVM_TEMPORARILY_ALLOW_OLD_TOOLCHAIN**:BOOL
804   If enabled, the compiler version check will only warn when using a toolchain
805   which is about to be deprecated, instead of emitting an error.
807 **LLVM_UBSAN_FLAGS**:STRING
808   Defines the set of compile flags used to enable UBSan. Only used if
809   ``LLVM_USE_SANITIZER`` contains ``Undefined``. This can be used to override
810   the default set of UBSan flags.
812 **LLVM_USE_INTEL_JITEVENTS**:BOOL
813   Enable building support for Intel JIT Events API. Defaults to OFF.
815 **LLVM_USE_LINKER**:STRING
816   Add ``-fuse-ld={name}`` to the link invocation. The possible value depend on
817   your compiler, for clang the value can be an absolute path to your custom
818   linker, otherwise clang will prefix the name with ``ld.`` and apply its usual
819   search. For example to link LLVM with the Gold linker, cmake can be invoked
820   with ``-DLLVM_USE_LINKER=gold``.
822 **LLVM_USE_OPROFILE**:BOOL
823   Enable building OProfile JIT support. Defaults to OFF.
825 **LLVM_USE_PERF**:BOOL
826   Enable building support for Perf (linux profiling tool) JIT support. Defaults to OFF.
828 **LLVM_USE_RELATIVE_PATHS_IN_FILES**:BOOL
829   Rewrite absolute source paths in sources and debug info to relative ones. The
830   source prefix can be adjusted via the LLVM_SOURCE_PREFIX variable.
832 **LLVM_USE_RELATIVE_PATHS_IN_DEBUG_INFO**:BOOL
833   Rewrite absolute source paths in debug info to relative ones. The source prefix
834   can be adjusted via the LLVM_SOURCE_PREFIX variable.
836 **LLVM_USE_SANITIZER**:STRING
837   Define the sanitizer used to build LLVM binaries and tests. Possible values
838   are ``Address``, ``Memory``, ``MemoryWithOrigins``, ``Undefined``, ``Thread``,
839   ``DataFlow``, and ``Address;Undefined``. Defaults to empty string.
841 **LLVM_USE_SPLIT_DWARF**:BOOL
842   If enabled CMake will pass ``-gsplit-dwarf`` to the compiler. This option
843   reduces link-time memory usage by reducing the amount of debug information that
844   the linker needs to resolve. It is recommended for platforms using the ELF object
845   format, like Linux systems when linker memory usage is too high.
847 **SPHINX_EXECUTABLE**:STRING
848   The path to the ``sphinx-build`` executable detected by CMake.
849   For installation instructions, see
850   https://www.sphinx-doc.org/en/master/usage/installation.html
852 **SPHINX_OUTPUT_HTML**:BOOL
853   If enabled (and ``LLVM_ENABLE_SPHINX`` is enabled) then the targets for
854   building the documentation as html are added (but not built by default unless
855   ``LLVM_BUILD_DOCS`` is enabled). There is a target for each project in the
856   source tree that uses sphinx (e.g.  ``docs-llvm-html``, ``docs-clang-html``
857   and ``docs-lld-html``). Defaults to ON.
859 **SPHINX_OUTPUT_MAN**:BOOL
860   If enabled (and ``LLVM_ENABLE_SPHINX`` is enabled) the targets for building
861   the man pages are added (but not built by default unless ``LLVM_BUILD_DOCS``
862   is enabled). Currently the only target added is ``docs-llvm-man``. Defaults
863   to ON.
865 **SPHINX_WARNINGS_AS_ERRORS**:BOOL
866   If enabled then sphinx documentation warnings will be treated as
867   errors. Defaults to ON.
869 Advanced variables
870 ~~~~~~~~~~~~~~~~~~
872 These are niche, and changing them from their defaults is more likely to cause
873 things to go wrong.  They are also unstable across LLVM versions.
875 **LLVM_TOOLS_INSTALL_DIR**:STRING
876   The path to install the main LLVM tools, relative to the *CMAKE_INSTALL_PREFIX*.
877   Defaults to *CMAKE_INSTALL_BINDIR*.
879 **LLVM_UTILS_INSTALL_DIR**:STRING
880   The path to install auxiliary LLVM utilities, relative to the *CMAKE_INSTALL_PREFIX*.
881   Only matters if *LLVM_INSTALL_UTILS* is enabled.
882   Defaults to *LLVM_TOOLS_INSTALL_DIR*.
884 **LLVM_EXAMPLES_INSTALL_DIR**:STRING
885   The path for examples of using LLVM, relative to the *CMAKE_INSTALL_PREFIX*.
886   Only matters if *LLVM_BUILD_EXAMPLES* is enabled.
887   Defaults to "examples".
889 CMake Caches
890 ============
892 Recently LLVM and Clang have been adding some more complicated build system
893 features. Utilizing these new features often involves a complicated chain of
894 CMake variables passed on the command line. Clang provides a collection of CMake
895 cache scripts to make these features more approachable.
897 CMake cache files are utilized using CMake's -C flag:
899 .. code-block:: console
901   $ cmake -C <path to cache file> <path to sources>
903 CMake cache scripts are processed in an isolated scope, only cached variables
904 remain set when the main configuration runs. CMake cached variables do not reset
905 variables that are already set unless the FORCE option is specified.
907 A few notes about CMake Caches:
909 - Order of command line arguments is important
911   - -D arguments specified before -C are set before the cache is processed and
912     can be read inside the cache file
913   - -D arguments specified after -C are set after the cache is processed and
914     are unset inside the cache file
916 - All -D arguments will override cache file settings
917 - CMAKE_TOOLCHAIN_FILE is evaluated after both the cache file and the command
918   line arguments
919 - It is recommended that all -D options should be specified *before* -C
921 For more information about some of the advanced build configurations supported
922 via Cache files see :doc:`AdvancedBuilds`.
924 Executing the Tests
925 ===================
927 Testing is performed when the *check-all* target is built. For instance, if you are
928 using Makefiles, execute this command in the root of your build directory:
930 .. code-block:: console
932   $ make check-all
934 On Visual Studio, you may run tests by building the project "check-all".
935 For more information about testing, see the :doc:`TestingGuide`.
937 Cross compiling
938 ===============
940 See `this wiki page <https://gitlab.kitware.com/cmake/community/wikis/doc/cmake/CrossCompiling>`_ for
941 generic instructions on how to cross-compile with CMake. It goes into detailed
942 explanations and may seem daunting, but it is not. On the wiki page there are
943 several examples including toolchain files. Go directly to the
944 ``Information how to set up various cross compiling toolchains`` section
945 for a quick solution.
947 Also see the `LLVM-related variables`_ section for variables used when
948 cross-compiling.
950 Embedding LLVM in your project
951 ==============================
953 From LLVM 3.5 onwards the CMake build system exports LLVM libraries as
954 importable CMake targets. This means that clients of LLVM can now reliably use
955 CMake to develop their own LLVM-based projects against an installed version of
956 LLVM regardless of how it was built.
958 Here is a simple example of a CMakeLists.txt file that imports the LLVM libraries
959 and uses them to build a simple application ``simple-tool``.
961 .. code-block:: cmake
963   cmake_minimum_required(VERSION 3.20.0)
964   project(SimpleProject)
966   find_package(LLVM REQUIRED CONFIG)
968   message(STATUS "Found LLVM ${LLVM_PACKAGE_VERSION}")
969   message(STATUS "Using LLVMConfig.cmake in: ${LLVM_DIR}")
971   # Set your project compile flags.
972   # E.g. if using the C++ header files
973   # you will need to enable C++11 support
974   # for your compiler.
976   include_directories(${LLVM_INCLUDE_DIRS})
977   separate_arguments(LLVM_DEFINITIONS_LIST NATIVE_COMMAND ${LLVM_DEFINITIONS})
978   add_definitions(${LLVM_DEFINITIONS_LIST})
980   # Now build our tools
981   add_executable(simple-tool tool.cpp)
983   # Find the libraries that correspond to the LLVM components
984   # that we wish to use
985   llvm_map_components_to_libnames(llvm_libs support core irreader)
987   # Link against LLVM libraries
988   target_link_libraries(simple-tool ${llvm_libs})
990 The ``find_package(...)`` directive when used in CONFIG mode (as in the above
991 example) will look for the ``LLVMConfig.cmake`` file in various locations (see
992 cmake manual for details).  It creates a ``LLVM_DIR`` cache entry to save the
993 directory where ``LLVMConfig.cmake`` is found or allows the user to specify the
994 directory (e.g. by passing ``-DLLVM_DIR=/usr/lib/cmake/llvm`` to
995 the ``cmake`` command or by setting it directly in ``ccmake`` or ``cmake-gui``).
997 This file is available in two different locations.
999 * ``<LLVM_INSTALL_PACKAGE_DIR>/LLVMConfig.cmake`` where
1000   ``<LLVM_INSTALL_PACKAGE_DIR>`` is the location where LLVM CMake modules are
1001   installed as part of an installed version of LLVM. This is typically
1002   ``cmake/llvm/`` within the lib directory. On Linux, this is typically
1003   ``/usr/lib/cmake/llvm/LLVMConfig.cmake``.
1005 * ``<LLVM_BUILD_ROOT>/lib/cmake/llvm/LLVMConfig.cmake`` where
1006   ``<LLVM_BUILD_ROOT>`` is the root of the LLVM build tree. **Note: this is only
1007   available when building LLVM with CMake.**
1009 If LLVM is installed in your operating system's normal installation prefix (e.g.
1010 on Linux this is usually ``/usr/``) ``find_package(LLVM ...)`` will
1011 automatically find LLVM if it is installed correctly. If LLVM is not installed
1012 or you wish to build directly against the LLVM build tree you can use
1013 ``LLVM_DIR`` as previously mentioned.
1015 The ``LLVMConfig.cmake`` file sets various useful variables. Notable variables
1016 include
1018 ``LLVM_CMAKE_DIR``
1019   The path to the LLVM CMake directory (i.e. the directory containing
1020   LLVMConfig.cmake).
1022 ``LLVM_DEFINITIONS``
1023   A list of preprocessor defines that should be used when building against LLVM.
1025 ``LLVM_ENABLE_ASSERTIONS``
1026   This is set to ON if LLVM was built with assertions, otherwise OFF.
1028 ``LLVM_ENABLE_EH``
1029   This is set to ON if LLVM was built with exception handling (EH) enabled,
1030   otherwise OFF.
1032 ``LLVM_ENABLE_RTTI``
1033   This is set to ON if LLVM was built with run time type information (RTTI),
1034   otherwise OFF.
1036 ``LLVM_INCLUDE_DIRS``
1037   A list of include paths to directories containing LLVM header files.
1039 ``LLVM_PACKAGE_VERSION``
1040   The LLVM version. This string can be used with CMake conditionals, e.g., ``if
1041   (${LLVM_PACKAGE_VERSION} VERSION_LESS "3.5")``.
1043 ``LLVM_TOOLS_BINARY_DIR``
1044   The path to the directory containing the LLVM tools (e.g. ``llvm-as``).
1046 Notice that in the above example we link ``simple-tool`` against several LLVM
1047 libraries. The list of libraries is determined by using the
1048 ``llvm_map_components_to_libnames()`` CMake function. For a list of available
1049 components look at the output of running ``llvm-config --components``.
1051 Note that for LLVM < 3.5 ``llvm_map_components_to_libraries()`` was
1052 used instead of ``llvm_map_components_to_libnames()``. This is now deprecated
1053 and will be removed in a future version of LLVM.
1055 .. _cmake-out-of-source-pass:
1057 Developing LLVM passes out of source
1058 ------------------------------------
1060 It is possible to develop LLVM passes out of LLVM's source tree (i.e. against an
1061 installed or built LLVM). An example of a project layout is provided below.
1063 .. code-block:: none
1065   <project dir>/
1066       |
1067       CMakeLists.txt
1068       <pass name>/
1069           |
1070           CMakeLists.txt
1071           Pass.cpp
1072           ...
1074 Contents of ``<project dir>/CMakeLists.txt``:
1076 .. code-block:: cmake
1078   find_package(LLVM REQUIRED CONFIG)
1080   separate_arguments(LLVM_DEFINITIONS_LIST NATIVE_COMMAND ${LLVM_DEFINITIONS})
1081   add_definitions(${LLVM_DEFINITIONS_LIST})
1082   include_directories(${LLVM_INCLUDE_DIRS})
1084   add_subdirectory(<pass name>)
1086 Contents of ``<project dir>/<pass name>/CMakeLists.txt``:
1088 .. code-block:: cmake
1090   add_library(LLVMPassname MODULE Pass.cpp)
1092 Note if you intend for this pass to be merged into the LLVM source tree at some
1093 point in the future it might make more sense to use LLVM's internal
1094 ``add_llvm_library`` function with the MODULE argument instead by...
1097 Adding the following to ``<project dir>/CMakeLists.txt`` (after
1098 ``find_package(LLVM ...)``)
1100 .. code-block:: cmake
1102   list(APPEND CMAKE_MODULE_PATH "${LLVM_CMAKE_DIR}")
1103   include(AddLLVM)
1105 And then changing ``<project dir>/<pass name>/CMakeLists.txt`` to
1107 .. code-block:: cmake
1109   add_llvm_library(LLVMPassname MODULE
1110     Pass.cpp
1111     )
1113 When you are done developing your pass, you may wish to integrate it
1114 into the LLVM source tree. You can achieve it in two easy steps:
1116 #. Copying ``<pass name>`` folder into ``<LLVM root>/lib/Transform`` directory.
1118 #. Adding ``add_subdirectory(<pass name>)`` line into
1119    ``<LLVM root>/lib/Transform/CMakeLists.txt``.
1121 Compiler/Platform-specific topics
1122 =================================
1124 Notes for specific compilers and/or platforms.
1126 Windows
1127 -------
1129 **LLVM_COMPILER_JOBS**:STRING
1130   Specifies the maximum number of parallel compiler jobs to use per project
1131   when building with msbuild or Visual Studio. Only supported for the Visual
1132   Studio 2010 CMake generator. 0 means use all processors. Default is 0.
1134 **CMAKE_MT**:STRING
1135   When compiling with clang-cl, recent CMake versions will default to selecting
1136   `llvm-mt` as the Manifest Tool instead of Microsoft's `mt.exe`. This will
1137   often cause errors like:
1139   .. code-block:: console
1141     -- Check for working C compiler: [...]clang-cl.exe - broken
1142     [...]
1143         MT: command [...] failed (exit code 0x1) with the following output:
1144         llvm-mt: error: no libxml2
1145         ninja: build stopped: subcommand failed.
1147   To work around this error, set `CMAKE_MT=mt`.