Skip to content

Commit b24c465

Browse files
authored
uswd lldb-dab instead of lldb-dap in the default dap configuration (#10091)
`LLVM v18.0.0` changed the name here: llvm/llvm-project#69264 Current users of `lldb-vscode` not able to upgrade will have to create a symlink so that `lldb-dap` links to `lldb-vscode`. BREAKING CHANGE: debugger looks for `lldb-dap` rather than `lldb-vscode` closes: #9964
1 parent 4b236f3 commit b24c465

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

languages.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -217,9 +217,9 @@ persistent-diagnostic-sources = ["rustc", "clippy"]
217217
'`' = '`'
218218

219219
[language.debugger]
220-
name = "lldb-vscode"
220+
name = "lldb-dap"
221221
transport = "stdio"
222-
command = "lldb-vscode"
222+
command = "lldb-dap"
223223

224224
[[language.debugger.templates]]
225225
name = "binary"
@@ -436,9 +436,9 @@ language-servers = [ "clangd" ]
436436
indent = { tab-width = 2, unit = " " }
437437

438438
[language.debugger]
439-
name = "lldb-vscode"
439+
name = "lldb-dap"
440440
transport = "stdio"
441-
command = "lldb-vscode"
441+
command = "lldb-dap"
442442

443443
[[language.debugger.templates]]
444444
name = "binary"
@@ -473,9 +473,9 @@ language-servers = [ "clangd" ]
473473
indent = { tab-width = 2, unit = " " }
474474

475475
[language.debugger]
476-
name = "lldb-vscode"
476+
name = "lldb-dap"
477477
transport = "stdio"
478-
command = "lldb-vscode"
478+
command = "lldb-dap"
479479

480480
[[language.debugger.templates]]
481481
name = "binary"
@@ -1263,9 +1263,9 @@ indent = { tab-width = 4, unit = " " }
12631263
formatter = { command = "zig" , args = ["fmt", "--stdin"] }
12641264

12651265
[language.debugger]
1266-
name = "lldb-vscode"
1266+
name = "lldb-dap"
12671267
transport = "stdio"
1268-
command = "lldb-vscode"
1268+
command = "lldb-dap"
12691269

12701270
[[language.debugger.templates]]
12711271
name = "binary"

0 commit comments

Comments
 (0)