-
Notifications
You must be signed in to change notification settings - Fork 0
/
workingLaunchConfig.json
44 lines (39 loc) · 1.37 KB
/
workingLaunchConfig.json
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
34
35
36
37
38
39
40
41
42
43
44
{
"version": "0.2.0",
"configurations": [
{
"name": "(gdb) Bash on Windows Launch",
"type": "cppdbg",
"request": "launch",
"program": "/mnt/c/Users/PATH TO PROGRAM",
"stopAtEntry": false,
"linux": {
"visualizerFile": "${workspaceFolder}/my.natviz"
},
"additionalSOLibSearchPath": "/usr/bin/",
"cwd": "/mnt/c/Users/PATH TO WORKING DIR",
"visualizerFile": "",
"internalConsoleOptions": "openOnSessionStart",
"avoidWindowsConsoleRedirection": false,
"filterStderr": false,
"filterStdout": true,
"environment": [],
"MIMode": "gdb",
"externalConsole": false,
"pipeTransport": {
"debuggerPath": "/usr/bin/gdb",
"pipeEnv": "-exec",
"pipeProgram": "c:\\windows\\sysnative\\bash.exe",
"pipeArgs": ["-c"],
"pipeCwd": "c:\\windows\\sysnative\\"
},
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
}
]
}