[Lldb-commits] [lldb] [lldb-dap] Adding server mode support to lldb-dap VSCode extension. (PR #128957)
John Harrison via lldb-commits
lldb-commits at lists.llvm.org
Fri Feb 28 19:21:16 PST 2025
================
@@ -88,6 +88,12 @@
"additionalProperties": {
"type": "string"
}
+ },
+ "lldb-dap.serverMode": {
+ "scope": "resource",
+ "type": "boolean",
+ "markdownDescription": "Run lldb-dap in server mode.\n\nWhen enabled, lldb-dap will start a background server that will be reused between debug sessions. This allows caching of debug symbols between sessions and improves launch performance.",
+ "default": false
----------------
ashgti wrote:
I think we should have more testing of the setting first. I know the unit tests are failing on Windows right now and I'm not sure why at the moment. Right now this is fairly basic, I have #129283 filed to look into improving server management operations in the extension code.
We may be able to enable it on macOS and linux sooner than Windows, we'd just want to do some more testing before making it the default.
https://github.com/llvm/llvm-project/pull/128957
More information about the lldb-commits
mailing list