annotate README.md @ 238:8222e65f95b1

rm directory
author kono
date Wed, 09 Nov 2022 17:58:30 +0900
parents c2a621ec9760
children 173fe712db74
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
233
c2a621ec9760 fix README.md
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 223
diff changeset
1 # Continuation based C
c2a621ec9760 fix README.md
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 223
diff changeset
2
c2a621ec9760 fix README.md
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 223
diff changeset
3 by Shinji KONO <kono@ie.u-ryukyu.ac.jp>
c2a621ec9760 fix README.md
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 223
diff changeset
4
150
anatofuz
parents:
diff changeset
5 # The LLVM Compiler Infrastructure
anatofuz
parents:
diff changeset
6
anatofuz
parents:
diff changeset
7 This directory and its sub-directories contain source code for LLVM,
anatofuz
parents:
diff changeset
8 a toolkit for the construction of highly optimized compilers,
anatofuz
parents:
diff changeset
9 optimizers, and run-time environments.
anatofuz
parents:
diff changeset
10
anatofuz
parents:
diff changeset
11 The README briefly describes how to get started with building LLVM.
anatofuz
parents:
diff changeset
12 For more information on how to contribute to the LLVM project, please
anatofuz
parents:
diff changeset
13 take a look at the
anatofuz
parents:
diff changeset
14 [Contributing to LLVM](https://llvm.org/docs/Contributing.html) guide.
anatofuz
parents:
diff changeset
15
anatofuz
parents:
diff changeset
16 ## Getting Started with the LLVM System
anatofuz
parents:
diff changeset
17
anatofuz
parents:
diff changeset
18 Taken from https://llvm.org/docs/GettingStarted.html.
anatofuz
parents:
diff changeset
19
anatofuz
parents:
diff changeset
20 ### Overview
anatofuz
parents:
diff changeset
21
anatofuz
parents:
diff changeset
22 Welcome to the LLVM project!
anatofuz
parents:
diff changeset
23
anatofuz
parents:
diff changeset
24 The LLVM project has multiple components. The core of the project is
anatofuz
parents:
diff changeset
25 itself called "LLVM". This contains all of the tools, libraries, and header
207
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 173
diff changeset
26 files needed to process intermediate representations and convert them into
150
anatofuz
parents:
diff changeset
27 object files. Tools include an assembler, disassembler, bitcode analyzer, and
anatofuz
parents:
diff changeset
28 bitcode optimizer. It also contains basic regression tests.
anatofuz
parents:
diff changeset
29
anatofuz
parents:
diff changeset
30 C-like languages use the [Clang](http://clang.llvm.org/) front end. This
173
0572611fdcc8 reorgnization done
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 150
diff changeset
31 component compiles C, C++, Objective-C, and Objective-C++ code into LLVM bitcode
150
anatofuz
parents:
diff changeset
32 -- and from there into object files, using LLVM.
anatofuz
parents:
diff changeset
33
anatofuz
parents:
diff changeset
34 Other components include:
anatofuz
parents:
diff changeset
35 the [libc++ C++ standard library](https://libcxx.llvm.org),
anatofuz
parents:
diff changeset
36 the [LLD linker](https://lld.llvm.org), and more.
anatofuz
parents:
diff changeset
37
anatofuz
parents:
diff changeset
38 ### Getting the Source Code and Building LLVM
anatofuz
parents:
diff changeset
39
anatofuz
parents:
diff changeset
40 The LLVM Getting Started documentation may be out of date. The [Clang
anatofuz
parents:
diff changeset
41 Getting Started](http://clang.llvm.org/get_started.html) page might have more
anatofuz
parents:
diff changeset
42 accurate information.
anatofuz
parents:
diff changeset
43
anatofuz
parents:
diff changeset
44 This is an example work-flow and configuration to get and build the LLVM source:
anatofuz
parents:
diff changeset
45
anatofuz
parents:
diff changeset
46 1. Checkout LLVM (including related sub-projects like Clang):
anatofuz
parents:
diff changeset
47
anatofuz
parents:
diff changeset
48 * ``git clone https://github.com/llvm/llvm-project.git``
anatofuz
parents:
diff changeset
49
anatofuz
parents:
diff changeset
50 * Or, on windows, ``git clone --config core.autocrlf=false
anatofuz
parents:
diff changeset
51 https://github.com/llvm/llvm-project.git``
anatofuz
parents:
diff changeset
52
anatofuz
parents:
diff changeset
53 2. Configure and build LLVM and Clang:
anatofuz
parents:
diff changeset
54
anatofuz
parents:
diff changeset
55 * ``cd llvm-project``
anatofuz
parents:
diff changeset
56
207
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 173
diff changeset
57 * ``cmake -S llvm -B build -G <generator> [options]``
150
anatofuz
parents:
diff changeset
58
anatofuz
parents:
diff changeset
59 Some common build system generators are:
anatofuz
parents:
diff changeset
60
anatofuz
parents:
diff changeset
61 * ``Ninja`` --- for generating [Ninja](https://ninja-build.org)
anatofuz
parents:
diff changeset
62 build files. Most llvm developers use Ninja.
anatofuz
parents:
diff changeset
63 * ``Unix Makefiles`` --- for generating make-compatible parallel makefiles.
anatofuz
parents:
diff changeset
64 * ``Visual Studio`` --- for generating Visual Studio projects and
anatofuz
parents:
diff changeset
65 solutions.
anatofuz
parents:
diff changeset
66 * ``Xcode`` --- for generating Xcode projects.
anatofuz
parents:
diff changeset
67
anatofuz
parents:
diff changeset
68 Some Common options:
anatofuz
parents:
diff changeset
69
anatofuz
parents:
diff changeset
70 * ``-DLLVM_ENABLE_PROJECTS='...'`` --- semicolon-separated list of the LLVM
anatofuz
parents:
diff changeset
71 sub-projects you'd like to additionally build. Can include any of: clang,
anatofuz
parents:
diff changeset
72 clang-tools-extra, libcxx, libcxxabi, libunwind, lldb, compiler-rt, lld,
223
5f17cb93ff66 LLVM13 (2021/7/18)
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 207
diff changeset
73 polly, or cross-project-tests.
150
anatofuz
parents:
diff changeset
74
anatofuz
parents:
diff changeset
75 For example, to build LLVM, Clang, libcxx, and libcxxabi, use
anatofuz
parents:
diff changeset
76 ``-DLLVM_ENABLE_PROJECTS="clang;libcxx;libcxxabi"``.
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
anatofuz
parents:
diff changeset
80 (default ``/usr/local``).
anatofuz
parents:
diff changeset
81
anatofuz
parents:
diff changeset
82 * ``-DCMAKE_BUILD_TYPE=type`` --- Valid options for *type* are Debug,
anatofuz
parents:
diff changeset
83 Release, RelWithDebInfo, and MinSizeRel. Default is Debug.
anatofuz
parents:
diff changeset
84
anatofuz
parents:
diff changeset
85 * ``-DLLVM_ENABLE_ASSERTIONS=On`` --- Compile with assertion checks enabled
anatofuz
parents:
diff changeset
86 (default is Yes for Debug builds, No for all other build types).
anatofuz
parents:
diff changeset
87
207
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 173
diff changeset
88 * ``cmake --build build [-- [options] <target>]`` or your build system specified above
150
anatofuz
parents:
diff changeset
89 directly.
anatofuz
parents:
diff changeset
90
anatofuz
parents:
diff changeset
91 * The default target (i.e. ``ninja`` or ``make``) will build all of LLVM.
anatofuz
parents:
diff changeset
92
anatofuz
parents:
diff changeset
93 * The ``check-all`` target (i.e. ``ninja check-all``) will run the
anatofuz
parents:
diff changeset
94 regression tests to ensure everything is in working order.
anatofuz
parents:
diff changeset
95
anatofuz
parents:
diff changeset
96 * CMake will generate targets for each tool and library, and most
anatofuz
parents:
diff changeset
97 LLVM sub-projects generate their own ``check-<project>`` target.
anatofuz
parents:
diff changeset
98
anatofuz
parents:
diff changeset
99 * Running a serial build will be **slow**. To improve speed, try running a
anatofuz
parents:
diff changeset
100 parallel build. That's done by default in Ninja; for ``make``, use the option
anatofuz
parents:
diff changeset
101 ``-j NNN``, where ``NNN`` is the number of parallel jobs, e.g. the number of
anatofuz
parents:
diff changeset
102 CPUs you have.
anatofuz
parents:
diff changeset
103
anatofuz
parents:
diff changeset
104 * For more information see [CMake](https://llvm.org/docs/CMake.html)
anatofuz
parents:
diff changeset
105
anatofuz
parents:
diff changeset
106 Consult the
anatofuz
parents:
diff changeset
107 [Getting Started with LLVM](https://llvm.org/docs/GettingStarted.html#getting-started-with-llvm)
anatofuz
parents:
diff changeset
108 page for detailed information on configuring and compiling LLVM. You can visit
anatofuz
parents:
diff changeset
109 [Directory Layout](https://llvm.org/docs/GettingStarted.html#directory-layout)
anatofuz
parents:
diff changeset
110 to learn about the layout of the source code tree.