[Lldb-commits] [lldb] [lldb-dap] Allow providing debug adapter arguments in the extension (PR #129262)
Jonas Devlieghere via lldb-commits
lldb-commits at lists.llvm.org
Fri Feb 28 08:19:41 PST 2025
================
@@ -75,6 +75,15 @@
"type": "string",
"description": "The path to the lldb-dap binary."
},
+ "lldb-dap.arguments": {
+ "scope": "resource",
+ "type": "array",
+ "default": [],
+ "items": {
+ "type": "string"
+ },
+ "description": "The arguments provided to the lldb-dap process."
----------------
JDevlieghere wrote:
Any reason the description here is different from the ones below? Also, should the description say "The list of _additional_ arguments", as the extension itself might specify others (e.g. with #128957 if you enable server mode)?
https://github.com/llvm/llvm-project/pull/129262
More information about the lldb-commits
mailing list