File tree Expand file tree Collapse file tree 2 files changed +31
-1
lines changed Expand file tree Collapse file tree 2 files changed +31
-1
lines changed Original file line number Diff line number Diff line change 1+ {
2+ "configurations" : [
3+ {
4+ "name" : " (gdb) Launch" ,
5+ "type" : " cppdbg" ,
6+ "request" : " launch" ,
7+ "program" : " enter program name, for example ${workspaceFolder}/a.exe" ,
8+ "args" : [],
9+ "stopAtEntry" : false ,
10+ "cwd" : " ${fileDirname}" ,
11+ "environment" : [],
12+ "externalConsole" : false ,
13+ "MIMode" : " gdb" ,
14+ "miDebuggerPath" : " /path/to/gdb" ,
15+ "setupCommands" : [
16+ {
17+ "description" : " Enable pretty-printing for gdb" ,
18+ "text" : " -enable-pretty-printing" ,
19+ "ignoreFailures" : true
20+ },
21+ {
22+ "description" : " Set Disassembly Flavor to Intel" ,
23+ "text" : " -gdb-set disassembly-flavor intel" ,
24+ "ignoreFailures" : true
25+ }
26+ ]
27+ }
28+ ],
29+ "version" : " 2.0.0"
30+ }
Original file line number Diff line number Diff line change @@ -11,4 +11,4 @@ typedef struct {
1111 int gamesPerPlayer ;
1212} Configuration ;
1313
14- #endif // SRC__CONFIG_STRUCTS_H_INCLUDED
14+ #endif // SRC__CONFIG_STRUCTS_H_INCLUDED
You can’t perform that action at this time.
0 commit comments