Skip to content

Instantly share code, notes, and snippets.

@torumakabe
Created March 12, 2019 12:55
Show Gist options
  • Save torumakabe/f7c0bdc690314964ddc071ccae1f39e8 to your computer and use it in GitHub Desktop.
Save torumakabe/f7c0bdc690314964ddc071ccae1f39e8 to your computer and use it in GitHub Desktop.
VS Code C Debugger Configuration (macOS)
// task.json
{
"version": "2.0.0",
"tasks": [
{
"label": "Debug Build",
"type": "shell",
"command": "clang",
"args": [
"-g",
"-O0",
"${workspaceFolder}/a.c",
"-o${workspaceFolder}/a.out"
],
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": "$gcc"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment