Nim VSCode Debug
必要な拡張機能: id: webfreak.debug
code:launch.json
{
"version": "0.2.0",
"configurations": [
{
"name": "Debug",
"type": "gdb",
"preLaunchTask": "build_nim",
"request": "launch",
"target": "./out/app",
"cwd": "${workspaceRoot}",
"valuesFormatting": "parseText"
}
]
}
code:tasks.json
{
"version": "2.0.0",
"tasks": [
{
"label": "build_nim",
"type": "shell",
"command": [
"nim",
"c",
"-d:debug",
"--debuginfo",
"--lineDir:on",
"--debugger:native",
"-o:${workspaceFolder}/out/app",
"hello.nim",
],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}