-
Notifications
You must be signed in to change notification settings - Fork 632
/
Copy pathlaunch.json.example
33 lines (33 loc) · 982 Bytes
/
launch.json.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// Copy this file to .vscode/launch.json and edit it to your needs
{
"version": "0.2.0",
"configurations": [
{
// Use this if you want to debug risedev p locally
"name": "Launch playground debug",
"type": "lldb",
"request": "launch",
"program": "${workspaceRoot}/target/debug/risingwave",
"args": [
"playground"
],
"cwd": "${workspaceRoot}",
"preLaunchTask": "build rw bin"
},
{
"name": "Open playground coredump",
"type": "lldb",
"request": "custom",
"targetCreateCommands": [
"target create ${workspaceFolder}/target/debug/risingwave --core ${input:coreFileName}"
],
}
],
"inputs": [
{
"id": "coreFileName",
"type": "promptString",
"description": "Enter core file path"
}
]
}