Created
December 13, 2021 16:41
-
-
Save nouredd2/349855e034fb4258f9fec015437c212b to your computer and use it in GitHub Desktop.
[CSSE332] Launch configuration for the simple shell homework
This file contains hidden or 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
{ | |
// 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