blob: 15da3027650816e11e14cbada994fac737a6058b [file] [log] [blame] [view]
Greg Bedwell0dc62492018-10-19 00:03:011# The LLVM Compiler Infrastructure
James Y Knightec937b92017-10-19 21:09:492
Evandro Menezes905ccf82020-02-12 20:21:023This directory and its sub-directories contain source code for LLVM,
James Y Knightec937b92017-10-19 21:09:494a toolkit for the construction of highly optimized compilers,
Evandro Menezes905ccf82020-02-12 20:21:025optimizers, and run-time environments.
Meike Baumgärtnerda6384f2019-10-24 01:03:376
Florian Hahneffcdc32019-12-02 15:46:477The README briefly describes how to get started with building LLVM.
8For more information on how to contribute to the LLVM project, please
9take a look at the
10[Contributing to LLVM](https://llvm.org/docs/Contributing.html) guide.
11
Meike Baumgärtnerda6384f2019-10-24 01:03:3712## Getting Started with the LLVM System
13
14Taken from https://llvm.org/docs/GettingStarted.html.
15
16### Overview
17
18Welcome to the LLVM project!
19
20The LLVM project has multiple components. The core of the project is
21itself called "LLVM". This contains all of the tools, libraries, and header
Paul Robinson47a11a92021-05-12 15:48:5022files needed to process intermediate representations and convert them into
Meike Baumgärtnerda6384f2019-10-24 01:03:3723object files. Tools include an assembler, disassembler, bitcode analyzer, and
24bitcode optimizer. It also contains basic regression tests.
25
26C-like languages use the [Clang](http://clang.llvm.org/) front end. This
Austin Conlon59dd6252020-04-07 06:36:4927component compiles C, C++, Objective-C, and Objective-C++ code into LLVM bitcode
Meike Baumgärtnerda6384f2019-10-24 01:03:3728-- and from there into object files, using LLVM.
29
30Other components include:
31the [libc++ C++ standard library](https://libcxx.llvm.org),
32the [LLD linker](https://lld.llvm.org), and more.
33
34### Getting the Source Code and Building LLVM
35
36The LLVM Getting Started documentation may be out of date. The [Clang
37Getting Started](http://clang.llvm.org/get_started.html) page might have more
38accurate information.
39
Evandro Menezes905ccf82020-02-12 20:21:0240This is an example work-flow and configuration to get and build the LLVM source:
Meike Baumgärtnerda6384f2019-10-24 01:03:3741
Evandro Menezes905ccf82020-02-12 20:21:02421. Checkout LLVM (including related sub-projects like Clang):
Meike Baumgärtnerda6384f2019-10-24 01:03:3743
44 * ``git clone https://github.com/llvm/llvm-project.git``
45
46 * Or, on windows, ``git clone --config core.autocrlf=false
47 https://github.com/llvm/llvm-project.git``
48
492. Configure and build LLVM and Clang:
50
51 * ``cd llvm-project``
52
Ebrahim Byagowi8eda10ca2021-02-16 20:36:5653 * ``cmake -S llvm -B build -G <generator> [options]``
Meike Baumgärtnerda6384f2019-10-24 01:03:3754
Evandro Menezes905ccf82020-02-12 20:21:0255 Some common build system generators are:
Meike Baumgärtnerda6384f2019-10-24 01:03:3756
57 * ``Ninja`` --- for generating [Ninja](https://ninja-build.org)
58 build files. Most llvm developers use Ninja.
59 * ``Unix Makefiles`` --- for generating make-compatible parallel makefiles.
60 * ``Visual Studio`` --- for generating Visual Studio projects and
61 solutions.
62 * ``Xcode`` --- for generating Xcode projects.
63
Michael Forster02c01832021-10-06 03:34:3164 Some common options:
Meike Baumgärtnerda6384f2019-10-24 01:03:3765
Louis Dionne4ae83bb2022-02-09 17:08:4466 * ``-DLLVM_ENABLE_PROJECTS='...'`` and ``-DLLVM_ENABLE_RUNTIMES='...'`` ---
67 semicolon-separated list of the LLVM sub-projects and runtimes you'd like to
68 additionally build. ``LLVM_ENABLE_PROJECTS`` can include any of: clang,
69 clang-tools-extra, cross-project-tests, flang, libc, libclc, lld, lldb,
70 mlir, openmp, polly, or pstl. ``LLVM_ENABLE_RUNTIMES`` can include any of
71 libcxx, libcxxabi, libunwind, compiler-rt, libc or openmp. Some runtime
72 projects can be specified either in ``LLVM_ENABLE_PROJECTS`` or in
73 ``LLVM_ENABLE_RUNTIMES``.
Meike Baumgärtnerda6384f2019-10-24 01:03:3774
75 For example, to build LLVM, Clang, libcxx, and libcxxabi, use
Louis Dionne4ae83bb2022-02-09 17:08:4476 ``-DLLVM_ENABLE_PROJECTS="clang" -DLLVM_ENABLE_RUNTIMES="libcxx;libcxxabi"``.
Meike Baumgärtnerda6384f2019-10-24 01:03:3777
78 * ``-DCMAKE_INSTALL_PREFIX=directory`` --- Specify for *directory* the full
Evandro Menezes905ccf82020-02-12 20:21:0279 path name of where you want the LLVM tools and libraries to be installed
Louis Dionne4ae83bb2022-02-09 17:08:4480 (default ``/usr/local``). Be careful if you install runtime libraries: if
81 your system uses those provided by LLVM (like libc++ or libc++abi), you
82 must not overwrite your system's copy of those libraries, since that
83 could render your system unusable. In general, using something like
84 ``/usr`` is not advised, but ``/usr/local`` is fine.
Meike Baumgärtnerda6384f2019-10-24 01:03:3785
86 * ``-DCMAKE_BUILD_TYPE=type`` --- Valid options for *type* are Debug,
87 Release, RelWithDebInfo, and MinSizeRel. Default is Debug.
88
89 * ``-DLLVM_ENABLE_ASSERTIONS=On`` --- Compile with assertion checks enabled
90 (default is Yes for Debug builds, No for all other build types).
91
Ebrahim Byagowi8eda10ca2021-02-16 20:36:5692 * ``cmake --build build [-- [options] <target>]`` or your build system specified above
Evandro Menezes905ccf82020-02-12 20:21:0293 directly.
Meike Baumgärtnerda6384f2019-10-24 01:03:3794
95 * The default target (i.e. ``ninja`` or ``make``) will build all of LLVM.
96
97 * The ``check-all`` target (i.e. ``ninja check-all``) will run the
98 regression tests to ensure everything is in working order.
99
Evandro Menezes905ccf82020-02-12 20:21:02100 * CMake will generate targets for each tool and library, and most
Meike Baumgärtnerda6384f2019-10-24 01:03:37101 LLVM sub-projects generate their own ``check-<project>`` target.
102
Evandro Menezes905ccf82020-02-12 20:21:02103 * Running a serial build will be **slow**. To improve speed, try running a
104 parallel build. That's done by default in Ninja; for ``make``, use the option
105 ``-j NNN``, where ``NNN`` is the number of parallel jobs, e.g. the number of
106 CPUs you have.
Meike Baumgärtnerda6384f2019-10-24 01:03:37107
108 * For more information see [CMake](https://llvm.org/docs/CMake.html)
109
110Consult the
111[Getting Started with LLVM](https://llvm.org/docs/GettingStarted.html#getting-started-with-llvm)
112page for detailed information on configuring and compiling LLVM. You can visit
113[Directory Layout](https://llvm.org/docs/GettingStarted.html#directory-layout)
114to learn about the layout of the source code tree.
Sylvestre Ledrued76de72022-02-08 20:54:32115
116## Getting in touch
117
118Join [LLVM Discourse forums](https://discourse.llvm.org/), [discord chat](https://discord.gg/xS7Z362) or #llvm IRC channel on [OFTC](https://oftc.net/).
119
120The LLVM project has adopted a [code of conduct](https://llvm.org/docs/CodeOfConduct.html) for
121participants to all modes of communication within the project.