Skip to content

Instantly share code, notes, and snippets.

@nouredd2
Created December 13, 2021 16:41
Show Gist options
  • Save nouredd2/349855e034fb4258f9fec015437c212b to your computer and use it in GitHub Desktop.
Save nouredd2/349855e034fb4258f9fec015437c212b to your computer and use it in GitHub Desktop.
[CSSE332] Launch configuration for the simple shell homework
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "simpleshell debug",
"type": "cppdbg",
"request": "launch",
"program": "${fileDirname}/simpleshell",
"args": [],
"stopAtEntry": false,
"cwd": "${fileDirname}",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
],
// "preLaunchTask": "C/C++: gcc build active file",
"miDebuggerPath": "/usr/bin/gdb"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment