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
[lldb-dap][docs] Improve documentation for contributors
This commit extends the developer docs for `lldb-dap`. It also adds a
short "Contributing" section to the user-facing README.
Last but not least, it updates the `repository` in the package.json to
point to the actual source of truth for the source code, instead of
pointing to its mirrored repository. I hope that the VS Code Marketplace
properly supports the `directory` property. Unfortunately, I have no way
to test this before merging this Pull Request.
Copy file name to clipboardExpand all lines: lldb/docs/resources/lldbdap.md
+89-14Lines changed: 89 additions & 14 deletions
Original file line number
Diff line number
Diff line change
@@ -1,16 +1,95 @@
1
-
# LLDB-DAP
2
-
3
-
The `lldb-dap` tool (formerly `lldb-vscode`) is a command line tool that
4
-
implements the [Debug Adapter
5
-
Protocol](https://microsoft.github.io/debug-adapter-protocol/). It can be
6
-
installed as an extension for Visual Studio Code and other IDEs supporting DAP.
7
-
The protocol is easy to run remotely and also can allow other tools and IDEs to
8
-
get a full featured debugger with a well defined protocol.
9
-
10
-
## Local Installation for Visual Studio Code
1
+
# Contributing to LLDB-DAP
2
+
3
+
This guide describes how to extend and contribute to lldb-dap.
4
+
For documentation on how to use lldb-dap, see [lldb-dap's README](https://github.com/llvm/llvm-project/blob/release/19.x/lldb/tools/lldb-dap/README.md).
5
+
6
+
lldb-dap and LLDB are developed under the umbrella of the
7
+
[LLVM project](https://llvm.org/). As such, the
8
+
"[Getting Started with the LLVM System](https://llvm.org/docs/GettingStarted.html)",
9
+
"[Contributing to LLVM](https://llvm.org/docs/Contributing.html)" and
Copy file name to clipboardExpand all lines: lldb/tools/lldb-dap/README.md
+9Lines changed: 9 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -286,3 +286,12 @@ is evaluated as a command.
286
286
The initial repl-mode can be configured with the cli flag `--repl-mode=<mode>`
287
287
and may also be adjusted at runtime using the lldb command
288
288
`lldb-dap repl-mode <mode>`.
289
+
290
+
## Contributing
291
+
292
+
`lldb-dap` and `lldb` are developed under the umbrella of the [LLVM project](https://llvm.org/).
293
+
The source code is [part of the LLVM repository](https://github.com/llvm/llvm-project/tree/main/lldb/tools/lldb-dap) on Github.
294
+
We use Github's [issue tracker](https://github.com/llvm/llvm-project/tree/main/lldb/tools/lldb-dap) and patches can be submitted via [pull requests](https://github.com/llvm/llvm-project/pulls).
295
+
Furthermore, there is a [LLDB category](https://discourse.llvm.org/c/subprojects/lldb/8) on the LLVM discourse forum.
296
+
297
+
For instructions on how to get started with development on lldb-dap, see the "[Contributing to lldb-dap](https://lldb.llvm.org/resources/lldbdap.html)"
0 commit comments