annotate README.md @ 236:c4bab56944e8 llvm-original

LLVM 16
author kono
date Wed, 09 Nov 2022 17:45:10 +0900
parents 5f17cb93ff66
children 173fe712db74 1f2b6ac9f198
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
150
anatofuz
parents:
diff changeset
1 # The LLVM Compiler Infrastructure
anatofuz
parents:
diff changeset
2
236
c4bab56944e8 LLVM 16
kono
parents: 223
diff changeset
3 This directory and its sub-directories contain the source code for LLVM,
150
anatofuz
parents:
diff changeset
4 a toolkit for the construction of highly optimized compilers,
anatofuz
parents:
diff changeset
5 optimizers, and run-time environments.
anatofuz
parents:
diff changeset
6
anatofuz
parents:
diff changeset
7 The README briefly describes how to get started with building LLVM.
anatofuz
parents:
diff changeset
8 For more information on how to contribute to the LLVM project, please
anatofuz
parents:
diff changeset
9 take a look at the
anatofuz
parents:
diff changeset
10 [Contributing to LLVM](https://llvm.org/docs/Contributing.html) guide.
anatofuz
parents:
diff changeset
11
anatofuz
parents:
diff changeset
12 ## Getting Started with the LLVM System
anatofuz
parents:
diff changeset
13
236
c4bab56944e8 LLVM 16
kono
parents: 223
diff changeset
14 Taken from [here](https://llvm.org/docs/GettingStarted.html).
150
anatofuz
parents:
diff changeset
15
anatofuz
parents:
diff changeset
16 ### Overview
anatofuz
parents:
diff changeset
17
anatofuz
parents:
diff changeset
18 Welcome to the LLVM project!
anatofuz
parents:
diff changeset
19
anatofuz
parents:
diff changeset
20 The LLVM project has multiple components. The core of the project is
anatofuz
parents:
diff changeset
21 itself called "LLVM". This contains all of the tools, libraries, and header
221
79ff65ed7e25 LLVM12 Original
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 173
diff changeset
22 files needed to process intermediate representations and convert them into
236
c4bab56944e8 LLVM 16
kono
parents: 223
diff changeset
23 object files. Tools include an assembler, disassembler, bitcode analyzer, and
c4bab56944e8 LLVM 16
kono
parents: 223
diff changeset
24 bitcode optimizer. It also contains basic regression tests.
150
anatofuz
parents:
diff changeset
25
236
c4bab56944e8 LLVM 16
kono
parents: 223
diff changeset
26 C-like languages use the [Clang](http://clang.llvm.org/) frontend. This
173
0572611fdcc8 reorgnization done
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 150
diff changeset
27 component compiles C, C++, Objective-C, and Objective-C++ code into LLVM bitcode
150
anatofuz
parents:
diff changeset
28 -- and from there into object files, using LLVM.
anatofuz
parents:
diff changeset
29
anatofuz
parents:
diff changeset
30 Other components include:
anatofuz
parents:
diff changeset
31 the [libc++ C++ standard library](https://libcxx.llvm.org),
anatofuz
parents:
diff changeset
32 the [LLD linker](https://lld.llvm.org), and more.
anatofuz
parents:
diff changeset
33
anatofuz
parents:
diff changeset
34 ### Getting the Source Code and Building LLVM
anatofuz
parents:
diff changeset
35
236
c4bab56944e8 LLVM 16
kono
parents: 223
diff changeset
36 The LLVM Getting Started documentation may be out of date. The [Clang
150
anatofuz
parents:
diff changeset
37 Getting Started](http://clang.llvm.org/get_started.html) page might have more
anatofuz
parents:
diff changeset
38 accurate information.
anatofuz
parents:
diff changeset
39
anatofuz
parents:
diff changeset
40 This is an example work-flow and configuration to get and build the LLVM source:
anatofuz
parents:
diff changeset
41
anatofuz
parents:
diff changeset
42 1. Checkout LLVM (including related sub-projects like Clang):
anatofuz
parents:
diff changeset
43
anatofuz
parents:
diff changeset
44 * ``git clone https://github.com/llvm/llvm-project.git``
anatofuz
parents:
diff changeset
45
anatofuz
parents:
diff changeset
46 * Or, on windows, ``git clone --config core.autocrlf=false
anatofuz
parents:
diff changeset
47 https://github.com/llvm/llvm-project.git``
anatofuz
parents:
diff changeset
48
anatofuz
parents:
diff changeset
49 2. Configure and build LLVM and Clang:
anatofuz
parents:
diff changeset
50
anatofuz
parents:
diff changeset
51 * ``cd llvm-project``
anatofuz
parents:
diff changeset
52
221
79ff65ed7e25 LLVM12 Original
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 173
diff changeset
53 * ``cmake -S llvm -B build -G <generator> [options]``
150
anatofuz
parents:
diff changeset
54
anatofuz
parents:
diff changeset
55 Some common build system generators are:
anatofuz
parents:
diff changeset
56
anatofuz
parents:
diff changeset
57 * ``Ninja`` --- for generating [Ninja](https://ninja-build.org)
anatofuz
parents:
diff changeset
58 build files. Most llvm developers use Ninja.
anatofuz
parents:
diff changeset
59 * ``Unix Makefiles`` --- for generating make-compatible parallel makefiles.
anatofuz
parents:
diff changeset
60 * ``Visual Studio`` --- for generating Visual Studio projects and
anatofuz
parents:
diff changeset
61 solutions.
anatofuz
parents:
diff changeset
62 * ``Xcode`` --- for generating Xcode projects.
anatofuz
parents:
diff changeset
63
236
c4bab56944e8 LLVM 16
kono
parents: 223
diff changeset
64 Some common options:
150
anatofuz
parents:
diff changeset
65
236
c4bab56944e8 LLVM 16
kono
parents: 223
diff changeset
66 * ``-DLLVM_ENABLE_PROJECTS='...'`` and ``-DLLVM_ENABLE_RUNTIMES='...'`` ---
c4bab56944e8 LLVM 16
kono
parents: 223
diff changeset
67 semicolon-separated list of the LLVM sub-projects and runtimes you'd like to
c4bab56944e8 LLVM 16
kono
parents: 223
diff changeset
68 additionally build. ``LLVM_ENABLE_PROJECTS`` can include any of: clang,
c4bab56944e8 LLVM 16
kono
parents: 223
diff changeset
69 clang-tools-extra, cross-project-tests, flang, libc, libclc, lld, lldb,
c4bab56944e8 LLVM 16
kono
parents: 223
diff changeset
70 mlir, openmp, polly, or pstl. ``LLVM_ENABLE_RUNTIMES`` can include any of
c4bab56944e8 LLVM 16
kono
parents: 223
diff changeset
71 libcxx, libcxxabi, libunwind, compiler-rt, libc or openmp. Some runtime
c4bab56944e8 LLVM 16
kono
parents: 223
diff changeset
72 projects can be specified either in ``LLVM_ENABLE_PROJECTS`` or in
c4bab56944e8 LLVM 16
kono
parents: 223
diff changeset
73 ``LLVM_ENABLE_RUNTIMES``.
150
anatofuz
parents:
diff changeset
74
anatofuz
parents:
diff changeset
75 For example, to build LLVM, Clang, libcxx, and libcxxabi, use
236
c4bab56944e8 LLVM 16
kono
parents: 223
diff changeset
76 ``-DLLVM_ENABLE_PROJECTS="clang" -DLLVM_ENABLE_RUNTIMES="libcxx;libcxxabi"``.
150
anatofuz
parents:
diff changeset
77
anatofuz
parents:
diff changeset
78 * ``-DCMAKE_INSTALL_PREFIX=directory`` --- Specify for *directory* the full
anatofuz
parents:
diff changeset
79 path name of where you want the LLVM tools and libraries to be installed
236
c4bab56944e8 LLVM 16
kono
parents: 223
diff changeset
80 (default ``/usr/local``). Be careful if you install runtime libraries: if
c4bab56944e8 LLVM 16
kono
parents: 223
diff changeset
81 your system uses those provided by LLVM (like libc++ or libc++abi), you
c4bab56944e8 LLVM 16
kono
parents: 223
diff changeset
82 must not overwrite your system's copy of those libraries, since that
c4bab56944e8 LLVM 16
kono
parents: 223
diff changeset
83 could render your system unusable. In general, using something like
c4bab56944e8 LLVM 16
kono
parents: 223
diff changeset
84 ``/usr`` is not advised, but ``/usr/local`` is fine.
150
anatofuz
parents:
diff changeset
85
anatofuz
parents:
diff changeset
86 * ``-DCMAKE_BUILD_TYPE=type`` --- Valid options for *type* are Debug,
anatofuz
parents:
diff changeset
87 Release, RelWithDebInfo, and MinSizeRel. Default is Debug.
anatofuz
parents:
diff changeset
88
anatofuz
parents:
diff changeset
89 * ``-DLLVM_ENABLE_ASSERTIONS=On`` --- Compile with assertion checks enabled
anatofuz
parents:
diff changeset
90 (default is Yes for Debug builds, No for all other build types).
anatofuz
parents:
diff changeset
91
221
79ff65ed7e25 LLVM12 Original
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 173
diff changeset
92 * ``cmake --build build [-- [options] <target>]`` or your build system specified above
150
anatofuz
parents:
diff changeset
93 directly.
anatofuz
parents:
diff changeset
94
anatofuz
parents:
diff changeset
95 * The default target (i.e. ``ninja`` or ``make``) will build all of LLVM.
anatofuz
parents:
diff changeset
96
anatofuz
parents:
diff changeset
97 * The ``check-all`` target (i.e. ``ninja check-all``) will run the
anatofuz
parents:
diff changeset
98 regression tests to ensure everything is in working order.
anatofuz
parents:
diff changeset
99
anatofuz
parents:
diff changeset
100 * CMake will generate targets for each tool and library, and most
anatofuz
parents:
diff changeset
101 LLVM sub-projects generate their own ``check-<project>`` target.
anatofuz
parents:
diff changeset
102
236
c4bab56944e8 LLVM 16
kono
parents: 223
diff changeset
103 * Running a serial build will be **slow**. To improve speed, try running a
c4bab56944e8 LLVM 16
kono
parents: 223
diff changeset
104 parallel build. That's done by default in Ninja; for ``make``, use the option
c4bab56944e8 LLVM 16
kono
parents: 223
diff changeset
105 ``-j NNN``, where ``NNN`` is the number of parallel jobs to run.
c4bab56944e8 LLVM 16
kono
parents: 223
diff changeset
106 In most cases, you get the best performance if you specify the number of CPU threads you have.
c4bab56944e8 LLVM 16
kono
parents: 223
diff changeset
107 On some Unix systems, you can specify this with ``-j$(nproc)``.
150
anatofuz
parents:
diff changeset
108
236
c4bab56944e8 LLVM 16
kono
parents: 223
diff changeset
109 * For more information see [CMake](https://llvm.org/docs/CMake.html).
150
anatofuz
parents:
diff changeset
110
anatofuz
parents:
diff changeset
111 Consult the
anatofuz
parents:
diff changeset
112 [Getting Started with LLVM](https://llvm.org/docs/GettingStarted.html#getting-started-with-llvm)
anatofuz
parents:
diff changeset
113 page for detailed information on configuring and compiling LLVM. You can visit
anatofuz
parents:
diff changeset
114 [Directory Layout](https://llvm.org/docs/GettingStarted.html#directory-layout)
anatofuz
parents:
diff changeset
115 to learn about the layout of the source code tree.
236
c4bab56944e8 LLVM 16
kono
parents: 223
diff changeset
116
c4bab56944e8 LLVM 16
kono
parents: 223
diff changeset
117 ## Getting in touch
c4bab56944e8 LLVM 16
kono
parents: 223
diff changeset
118
c4bab56944e8 LLVM 16
kono
parents: 223
diff changeset
119 Join [LLVM Discourse forums](https://discourse.llvm.org/), [discord chat](https://discord.gg/xS7Z362) or #llvm IRC channel on [OFTC](https://oftc.net/).
c4bab56944e8 LLVM 16
kono
parents: 223
diff changeset
120
c4bab56944e8 LLVM 16
kono
parents: 223
diff changeset
121 The LLVM project has adopted a [code of conduct](https://llvm.org/docs/CodeOfConduct.html) for
c4bab56944e8 LLVM 16
kono
parents: 223
diff changeset
122 participants to all modes of communication within the project.