[llvm] abb2a91 - [docs][NFC] Strip trailing whitespace from GettingStarted.rst
Louis Dionne via llvm-commits
llvm-commits at lists.llvm.org
Thu Oct 28 07:46:27 PDT 2021
Author: Louis Dionne
Date: 2021-10-28T10:45:13-04:00
New Revision: abb2a91b89722da671d17606fb65d462f9882cc0
URL: https://github.com/llvm/llvm-project/commit/abb2a91b89722da671d17606fb65d462f9882cc0
DIFF: https://github.com/llvm/llvm-project/commit/abb2a91b89722da671d17606fb65d462f9882cc0.diff
LOG: [docs][NFC] Strip trailing whitespace from GettingStarted.rst
Added:
Modified:
llvm/docs/GettingStarted.rst
Removed:
################################################################################
diff --git a/llvm/docs/GettingStarted.rst b/llvm/docs/GettingStarted.rst
index 0a4bff0da83e7..521c0010b7dc4 100644
--- a/llvm/docs/GettingStarted.rst
+++ b/llvm/docs/GettingStarted.rst
@@ -38,9 +38,9 @@ This is an example workflow and configuration to get and build the LLVM source:
* ``git clone https://github.com/llvm/llvm-project.git``
* Or, on windows, ``git clone --config core.autocrlf=false
https://github.com/llvm/llvm-project.git``
- * To save storage and speed-up the checkout time, you may want to do a
- `shallow clone <https://git-scm.com/docs/git-clone#Documentation/git-clone.txt---depthltdepthgt>`_.
- For example, to get the latest revision of the LLVM project, use
+ * To save storage and speed-up the checkout time, you may want to do a
+ `shallow clone <https://git-scm.com/docs/git-clone#Documentation/git-clone.txt---depthltdepthgt>`_.
+ For example, to get the latest revision of the LLVM project, use
``git clone --depth 1 https://github.com/llvm/llvm-project.git``
#. Configure and build LLVM and Clang:
@@ -832,7 +832,7 @@ layout:
Generates system build files.
``llvm/cmake/modules``
- Build configuration for llvm user defined options. Checks compiler version and
+ Build configuration for llvm user defined options. Checks compiler version and
linker flags.
``llvm/cmake/platforms``
@@ -842,20 +842,20 @@ Generates system build files.
``llvm/examples``
-----------------
-- Some simple examples showing how to use LLVM as a compiler for a custom
+- Some simple examples showing how to use LLVM as a compiler for a custom
language - including lowering, optimization, and code generation.
-- Kaleidoscope Tutorial: Kaleidoscope language tutorial run through the
- implementation of a nice little compiler for a non-trivial language
- including a hand-written lexer, parser, AST, as well as code generation
- support using LLVM- both static (ahead of time) and various approaches to
- Just In Time (JIT) compilation.
- `Kaleidoscope Tutorial for complete beginner
+- Kaleidoscope Tutorial: Kaleidoscope language tutorial run through the
+ implementation of a nice little compiler for a non-trivial language
+ including a hand-written lexer, parser, AST, as well as code generation
+ support using LLVM- both static (ahead of time) and various approaches to
+ Just In Time (JIT) compilation.
+ `Kaleidoscope Tutorial for complete beginner
<https://llvm.org/docs/tutorial/MyFirstLanguageFrontend/index.html>`_.
-- BuildingAJIT: Examples of the `BuildingAJIT tutorial
- <https://llvm.org/docs/tutorial/BuildingAJIT1.html>`_ that shows how LLVM’s
- ORC JIT APIs interact with other parts of LLVM. It also, teaches how to
+- BuildingAJIT: Examples of the `BuildingAJIT tutorial
+ <https://llvm.org/docs/tutorial/BuildingAJIT1.html>`_ that shows how LLVM’s
+ ORC JIT APIs interact with other parts of LLVM. It also, teaches how to
recombine them to build a custom JIT that is suited to your use-case.
``llvm/include``
@@ -923,8 +923,8 @@ share code among the `tools`_.
``llvm/lib/MC/``
- The libraries represent and process code at machine code level. Handles
- assembly and object-file emission.
+ The libraries represent and process code at machine code level. Handles
+ assembly and object-file emission.
``llvm/lib/ExecutionEngine/``
More information about the llvm-commits
mailing list