Skip to content

Instantly share code, notes, and snippets.

@tratitude
Created March 25, 2019 09:23
Show Gist options
  • Save tratitude/bd6e1a4c6d7c680aa986a7338012159e to your computer and use it in GitHub Desktop.
Save tratitude/bd6e1a4c6d7c680aa986a7338012159e to your computer and use it in GitHub Desktop.
vscode linux gcc
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "build",
"type": "shell",
"command": "gcc",
"args": [
"-g",
"-std=c99",
"${file}",
"-o",
"${fileBasenameNoExtension}.o"
],
"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