@@ -11,7 +11,7 @@ take a look at the
1111
1212## Getting Started with the LLVM System
1313
14- Taken from https://llvm.org/docs/GettingStarted.html .
14+ Taken from [ here ] ( https://llvm.org/docs/GettingStarted.html ) .
1515
1616### Overview
1717
@@ -20,10 +20,10 @@ Welcome to the LLVM project!
2020The LLVM project has multiple components. The core of the project is
2121itself called "LLVM". This contains all of the tools, libraries, and header
2222files needed to process intermediate representations and convert them into
23- object files. Tools include an assembler, disassembler, bitcode analyzer, and
24- bitcode optimizer. It also contains basic regression tests.
23+ object files. Tools include an assembler, disassembler, bitcode analyzer, and
24+ bitcode optimizer. It also contains basic regression tests.
2525
26- C-like languages use the [ Clang] ( http://clang.llvm.org/ ) front end. This
26+ C-like languages use the [ Clang] ( http://clang.llvm.org/ ) frontend. This
2727component compiles C, C++, Objective-C, and Objective-C++ code into LLVM bitcode
2828-- and from there into object files, using LLVM.
2929
@@ -100,13 +100,13 @@ This is an example work-flow and configuration to get and build the LLVM source:
100100 * CMake will generate targets for each tool and library, and most
101101 LLVM sub-projects generate their own `` check-<project> `` target.
102102
103- * Running a serial build will be ** slow** . To improve speed, try running a
103+ * Running a serial build will be ** slow** . To improve speed, try running a
104104 parallel build. That's done by default in Ninja; for `` make `` , use the option
105105 `` -j NNN `` , where `` NNN `` is the number of parallel jobs to run.
106106 In most cases, you get the best performance if you specify the number of CPU threads you have.
107107 On some Unix systems, you can specify this with `` -j$(nproc) `` .
108108
109- * For more information see [ CMake] ( https://llvm.org/docs/CMake.html )
109+ * For more information see [ CMake] ( https://llvm.org/docs/CMake.html ) .
110110
111111Consult the
112112[ Getting Started with LLVM] ( https://llvm.org/docs/GettingStarted.html#getting-started-with-llvm )
0 commit comments