{ "version": "0.2.0", "configurations": [ { "name": "Debug", "type": "gdb", "request": "attach", "target": "localhost:3333", "remote": true, "cwd": "${workspaceRoot}", "valuesFormatting": "parseText", "stopAtConnect": true, "gdbpath": "gdb-multiarch", "windows": { "gdbpath": "gdb-multiarch.exe" }, "osx": { "gdbpath": "gdb" }, "executable": "${workspaceRoot}/${workspaceRootFolderName}.elf", "autorun": [ "monitor reset shellhalt", "load ${workspaceRootFolderName}.elf", "tbreak main", "continue" ] } ] }