Attempt to get debugging working
This commit is contained in:
parent
3630005e19
commit
c3b9e6bedf
|
@ -5,24 +5,12 @@
|
||||||
"version": "0.2.0",
|
"version": "0.2.0",
|
||||||
"configurations": [
|
"configurations": [
|
||||||
{
|
{
|
||||||
"name": "(gdb) Launch",
|
"name": "Debug Nim Project",
|
||||||
"type": "cppdbg",
|
"type": "gdb",
|
||||||
"request": "launch",
|
"request": "launch",
|
||||||
"program": "${workspaceFolder}/src/client.exe",
|
"target": "./src/client.exe",
|
||||||
"args": [],
|
"cwd": "${workspaceRoot}",
|
||||||
"stopAtEntry": false,
|
"valuesFormatting": "parseText"
|
||||||
"cwd": "${workspaceFolder}",
|
}
|
||||||
"environment": [],
|
|
||||||
"externalConsole": false,
|
|
||||||
"MIMode": "gdb",
|
|
||||||
"miDebuggerPath": "C:/mingw/bin/gdb.exe",
|
|
||||||
"setupCommands": [
|
|
||||||
{
|
|
||||||
"description": "Enable pretty-printing for gdb",
|
|
||||||
"text": "-enable-pretty-printing",
|
|
||||||
"ignoreFailures": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
]
|
]
|
||||||
}
|
}
|
|
@ -4,13 +4,9 @@
|
||||||
"version": "2.0.0",
|
"version": "2.0.0",
|
||||||
"tasks": [
|
"tasks": [
|
||||||
{
|
{
|
||||||
"taskName": "Run client.nim",
|
"label": "Build Nim Project",
|
||||||
"command": "nim",
|
|
||||||
"args": ["c", "-d:ssl", "-r", "src/client.nim"],
|
|
||||||
"options": {
|
|
||||||
"cwd": "${workspaceRoot}"
|
|
||||||
},
|
|
||||||
"type": "shell",
|
"type": "shell",
|
||||||
|
"command": "nim compile -d:ssl -d:debug --debugger:native ./src/client.nim",
|
||||||
"group": {
|
"group": {
|
||||||
"kind": "build",
|
"kind": "build",
|
||||||
"isDefault": true
|
"isDefault": true
|
||||||
|
|
Reference in New Issue