You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+7-7
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ lldb-mi uses CMake to build. The only dependencies needed for lldb-mi are a C++1
8
8
9
9
# Building against system LLDB
10
10
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:
12
12
13
13
14
14
```bash
@@ -18,9 +18,9 @@ cmake --build .
18
18
19
19
# Building against custom LLDB
20
20
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`).
22
22
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:
24
24
```
25
25
cd
26
26
mkdir buildspace
@@ -49,9 +49,9 @@ ninja
49
49
50
50
# Building against custom LLDB.framework (Darwin Only)
51
51
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`
53
53
54
-
The snippits below change the cmake calls from the above script.
54
+
The snippets below change the CMake calls from the above script.
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:
69
69
```bash
70
70
process launch failed: unable to locate lldb-server
71
71
```
72
72
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