Skip to content

Commit

Permalink
Misc scripts.
Browse files Browse the repository at this point in the history
  • Loading branch information
vadimcn committed Mar 19, 2019
1 parent 6041dab commit 5b91781
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@
},
{
"name": "test codelldb",
"preLaunchTask": "cargo build",
"preLaunchTask": "check_codelldb",
"type": "lldb",
"request": "launch",
"cargo": {
Expand Down
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,6 @@
"files.insertFinalNewline": true,
"files.trimTrailingWhitespace": true,
"python.linting.enabled": false,
"rust.build_lib": true
"rust.build_lib": true,
"lldb.verboseLogging": true
}
12 changes: 8 additions & 4 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,15 +61,19 @@
"type": "shell",
"label": "Start extension host",
"command": "code --extensionDevelopmentPath=${workspaceFolder}/build ${workspaceFolder}/debuggee",
"group": "build",
"dependsOn": "dev_debugging",
"group": "build"
},
{
"type": "shell",
"label": "Start extension host (Insiders)",
"command": "code-insiders --extensionDevelopmentPath=${workspaceFolder}/build ${workspaceFolder}/debuggee",
"group": "build"
},
{
"type": "shell",
"label": "Start extension host (dev VSCode)",
"command": "${workspaceFolder}/../vscode/scripts/code.sh --extensionDevelopmentPath=${workspaceFolder}/build ${workspaceFolder}/debuggee",
"group": "build",
"dependsOn": "dev_debugging",
"group": "build"
},
{
"label": "vsix_extracted",
Expand Down
4 changes: 2 additions & 2 deletions debuggee/.vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
//"targetDir": "${workspaceFolder}/../build/debuggee-gnu"
//"targetDir": "${workspaceFolder}/../build/debuggee-msvc"
},
//"lldb.launch.debugServer": 4711,
"lldb.adapterType": "classic",
"lldb.launch.debugServer": 4711,
"lldb.adapterType": "native",
"lldb.verboseLogging": true,
}

0 comments on commit 5b91781

Please sign in to comment.