Last active
June 6, 2021 19:21
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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