Skip to content

Commit 231f6db

Browse files
committed
[vscode] Update launch and debug configuration
1 parent 59ef4a0 commit 231f6db

File tree

2 files changed

+15
-6
lines changed

2 files changed

+15
-6
lines changed

.vscode/launch.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,15 @@
2222
"arguments": "-r",
2323
"valuesFormatting": "parseText"
2424
},
25+
{
26+
"type": "gdb",
27+
"request": "launch",
28+
"name": "x86 LC debug",
29+
"target": "${workspaceRoot}/bin/gcc_native/quick_start_localcontroller",
30+
"cwd": "${workspaceRoot}/bin/gcc_native/",
31+
"arguments": "-r",
32+
"valuesFormatting": "parseText"
33+
},
2534
{
2635
"type": "gdb",
2736
"request": "launch",

.vscode/tasks.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
"version": "2.0.0",
55
"tasks": [
66
{
7-
"label": "build GCC native",
7+
"label": "build GCC",
88
"type": "shell",
99
"command": "make",
1010
"args": [
11-
"gcc-native",
11+
"gcc",
1212
"BUILD_TYPE=Debug"
1313
],
1414
"problemMatcher": "$gcc",
@@ -18,20 +18,20 @@
1818
}
1919
},
2020
{
21-
"label": "tests GCC native",
21+
"label": "tests GCC",
2222
"type": "shell",
2323
"command": "make",
2424
"args": [
25-
"tests-gcc-native"
25+
"tests-gcc"
2626
],
2727
"group": "build"
2828
},
2929
{
30-
"label": "clean GCC native",
30+
"label": "clean GCC",
3131
"type": "shell",
3232
"command": "make",
3333
"args": [
34-
"clean-gcc-native",
34+
"clean-gcc",
3535
"BUILD_TYPE=Debug"
3636
],
3737
"group": "build"

0 commit comments

Comments
 (0)