Skip to content

Commit

Permalink
Integrate from LLVM at llvm/llvm-project@33f4f39
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Dec 6, 2024
1 parent 37907dd commit ae46fc2
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

26 changes: 24 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "lldb-dap",
"displayName": "LLDB DAP",
"version": "0.2.7",
"version": "0.2.8",
"publisher": "llvm-vs-code-extensions",
"homepage": "https://lldb.llvm.org",
"description": "LLDB debugging from VSCode",
Expand Down Expand Up @@ -141,7 +141,7 @@
"debuggers": [
{
"type": "lldb-dap",
"label": "Native LLDB Debugger",
"label": "LLDB DAP Debugger",
"program": "./bin/lldb-dap",
"windows": {
"program": "./bin/lldb-dap.exe"
Expand Down Expand Up @@ -508,6 +508,28 @@
"env": [],
"cwd": "^\"\\${workspaceRoot}\""
}
},
{
"label": "LLDB: Attach",
"description": "",
"body": {
"type": "lldb-dap",
"request": "attach",
"name": "${2:Attach}",
"program": "${1:<your program>}",
"waitFor": true
}
},
{
"label": "LLDB: Load Coredump",
"description": "",
"body": {
"type": "lldb-dap",
"request": "attach",
"name": "${2:Core}",
"program": "${1:<your program>}",
"coreFile": "${1:<your program>}.core"
}
}
]
}
Expand Down

0 comments on commit ae46fc2

Please sign in to comment.