Skip to content

Instantly share code, notes, and snippets.

@stepbester
Last active June 6, 2021 19:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stepbester/1ca8207554fdc372fbdf67b1c1a7708c to your computer and use it in GitHub Desktop.
Save stepbester/1ca8207554fdc372fbdf67b1c1a7708c to your computer and use it in GitHub Desktop.
A launch.json file for using GDB to debug a Pascal file in VS Code
{
"version": "0.2.0",
"configurations": [
{
"name": "Debug",
"type": "gdb",
"request": "launch",
"target": ".build/debug/${fileBasenameNoExtension}",
"cwd": "${workspaceRoot}",
"valuesFormatting": "parseText",
"preLaunchTask": "${defaultBuildTask}"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment