Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion lldb/docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@ interesting areas to contribute to lldb.
use/ondemand
use/aarch64-linux
use/symbolfilejson
use/lldbdap
use/mcp
use/troubleshooting
use/links
Expand Down Expand Up @@ -171,7 +172,7 @@ interesting areas to contribute to lldb.
resources/lldbplatformpackets
resources/caveats
resources/projects
resources/lldbdap
resources/lldbdap-contributing
resources/addinglanguagesupport
Public C++ API <https://lldb.llvm.org/cpp_reference/namespacelldb.html>
Private C++ API <https://lldb.llvm.org/cpp_reference/index.html>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ project.
lldb-dap's source code is [part of the LLVM
repository](https://github.com/llvm/llvm-project/tree/main/lldb/tools/lldb-dap)
on Github. We use Github's [issue
tracker](https://github.com/llvm/llvm-project/tree/main/lldb/tools/lldb-dap)
tracker](https://github.com/llvm/llvm-project/issues)
and patches can be submitted via [pull
requests](https://github.com/llvm/llvm-project/pulls).

## Building `lldb-dap` from soruce
## Building `lldb-dap` from source

To build lldb-dap from source, first need to [setup a LLDB build](https://lldb.llvm.org/resources/build.html).
After doing so, run `ninja lldb-dap`. To use your freshly built `lldb-dap`
Expand All @@ -30,7 +30,7 @@ binary, install the VS Code extension and point it to lldb-dap by setting the
Under the hood, the UI-based debugging experience is fueled by three separate
components:

* LLDB provides general, IDE-indepedent debugging features, such as:
* LLDB provides general, IDE-independent debugging features, such as:
loading binaries / core dumps, interpreting debug info, setting breakpoints,
pretty-printing variables, etc. The `lldb` binary exposes this functionality
via a command line interface.
Expand Down
Loading
Loading