@@ -13,8 +13,8 @@ combination of its sub-project tools for distribution. This document covers
13
13
useful features of the LLVM build system as well as best practices and general
14
14
information about packaging LLVM.
15
15
16
- If you are new to CMake you may find the :doc: `CMake ` or :doc: `CMakePrimer `
17
- documentation useful. Some of the things covered in this document are the inner
16
+ If you are new to CMake, you may find the :doc: `CMake ` or :doc: `CMakePrimer `
17
+ documentation useful. This document covers some of the inner
18
18
workings of the builds described in the :doc: `AdvancedBuilds ` document.
19
19
20
20
General Distribution Guidance
@@ -27,7 +27,7 @@ compiler. This is done so that the compiler you distribute benefits from all the
27
27
bug fixes, performance optimizations and general improvements provided by the
28
28
new compiler.
29
29
30
- In deciding how to build your distribution there are a few trade-offs that you
30
+ In deciding how to build your distribution, there are a few trade-offs that you
31
31
will need to evaluate. The big two are:
32
32
33
33
#. Compile time of the distribution against performance of the built compiler
@@ -41,8 +41,8 @@ opportunity for the compiler to optimize.
41
41
42
42
The guidance for minimizing distribution size is to dynamically link LLVM and
43
43
Clang libraries into the tools to reduce code duplication. This will come at a
44
- substantial performance penalty to the generated binary both because it reduces
45
- optimization opportunity, and because dynamic linking requires resolving symbols
44
+ substantial performance penalty to the generated binary, both because it reduces
45
+ optimization opportunities and because dynamic linking requires resolving symbols
46
46
at process launch time, which can be very slow for C++ code.
47
47
48
48
.. _shared_libs :
@@ -76,7 +76,7 @@ LLVM testing tools. Alternatively the ``install-distribution`` target, which is
76
76
recommended for building distributions, only installs specific parts of LLVM as
77
77
specified at configuration time by *LLVM_DISTRIBUTION_COMPONENTS *.
78
78
79
- Additionally by default the ``install `` target will install the LLVM testing
79
+ Additionally, by default, the ``install `` target will install the LLVM testing
80
80
tools as the public tools. This can be changed well by setting
81
81
*LLVM_INSTALL_TOOLCHAIN_ONLY * to ``On ``. The LLVM tools are intended for
82
82
development and testing of LLVM, and should only be included in distributions
0 commit comments