Skip to content

Commit af31036

Browse files
authored
Fix some typos in the readme (#113)
* Fix typos * Fix typo
1 parent 4fe9c66 commit af31036

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ lldb-mi uses CMake to build. The only dependencies needed for lldb-mi are a C++1
88

99
# Building against system LLDB
1010

11-
If your distribution or operating system already ships a correctly configured LLDB/Clang/LLVM installation, lldb-mi can be build by simply running:
11+
If your distribution or operating system already ships a correctly configured LLDB/Clang/LLVM installation, lldb-mi can be built by simply running:
1212

1313

1414
```bash
@@ -18,9 +18,9 @@ cmake --build .
1818

1919
# Building against custom LLDB
2020

21-
You can also build lldb-mi against a LLDB that you compiled yourself. For that compile LLDB as described [here](https://lldb.llvm.org/resources/build.html) but set `CMAKE_INSTALL_PREFIX` to a local directory and build the LLVM shared library by passing `-DLLVM_BUILD_LLVM_DYLIB=On` to CMake. Afterwards point towards that prefix directory when building lldb-mi by settings `CMAKE_PREFIX_PATH` (e.g. `cmake -DCMAKE_PREFIX_PATH=/home/yourname/lldb-mi/install`).
21+
You can also build lldb-mi against a LLDB that you compiled yourself. For that, compile LLDB as described [here](https://lldb.llvm.org/resources/build.html) but set `CMAKE_INSTALL_PREFIX` to a local directory and build the LLVM shared library by passing `-DLLVM_BUILD_LLVM_DYLIB=On` to CMake. Afterwards point towards that prefix directory when building lldb-mi by setting `CMAKE_PREFIX_PATH` (e.g. `cmake -DCMAKE_PREFIX_PATH=/home/yourname/lldb-mi/install`).
2222

23-
This example script should build LLVM and lldb-mi on an average UNIX system in the ~/buildspace subfolder:
23+
This example script should build LLVM and lldb-mi on an average UNIX system in the `~/buildspace` subfolder:
2424
```
2525
cd
2626
mkdir buildspace
@@ -49,9 +49,9 @@ ninja
4949

5050
# Building against custom LLDB.framework (Darwin Only)
5151

52-
You can also build lldb-mi against a LLDB.framework that you compiled yourself. It is the same instructions as above but build the LLVM framework by passing `-DLLDB_BUILD_FRAMEWORK=1` to CMake instead of using the shared library. Then build LLDB-MI with `-DUSE_LLDB_FRAMEWORK=1`
52+
You can also build lldb-mi against a LLDB.framework that you compiled yourself. You follow the same instructions as above but build the LLVM framework by passing `-DLLDB_BUILD_FRAMEWORK=1` to CMake instead of using the shared library. Then build lldb-mi with `-DUSE_LLDB_FRAMEWORK=1`
5353

54-
The snippits below change the cmake calls from the above script.
54+
The snippets below change the CMake calls from the above script.
5555
```
5656
// Building llvm-project
5757
cmake -DLLVM_ENABLE_PROJECTS="clang;lldb;libcxx;libcxxabi" -DCMAKE_INSTALL_PREFIX=~/buildspace/llvm-inst/ -DLLDB_BUILD_FRAMEWORK=1 -GNinja ../llvm-project/llvm
@@ -65,9 +65,9 @@ cmake -DCMAKE_PREFIX_PATH=~/buildspace/llvm-inst/ -DUSE_LLDB_FRAMEWORK=1 -GNinja
6565

6666
# Notes
6767

68-
On some architectures (e. g. Linux, x86-64), LLDB dinamic library fails to determine its location. That results to inability of locating a gdbserver stub:
68+
On some architectures (e.g. Linux, x86-64), LLDB dynamic library fails to determine its location. That results in the inability to locate a gdbserver stub:
6969
```bash
7070
process launch failed: unable to locate lldb-server
7171
```
7272

73-
The workaraund is to set LLDB_DEBUGSERVER_PATH environment variable before running LLDB-MI.
73+
The workaround is to set `LLDB_DEBUGSERVER_PATH` environment variable before running lldb-mi.

0 commit comments

Comments
 (0)