Last active
January 25, 2022 13:52
-
-
Save paroj/dc8e5e135dafb2b4059d45fa30ccae59 to your computer and use it in GitHub Desktop.
Revisions
-
paroj revised this gist
Jan 25, 2022 . 1 changed file with 0 additions and 4 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -21,10 +21,6 @@ "text": "-enable-pretty-printing", "ignoreFailures": true } ] } ] -
paroj created this gist
Jan 10, 2022 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,31 @@ { // launch python through GDB to break in CPP code "version": "0.2.0", "configurations": [ { "name": "GDB Python: Current File", "type": "cppdbg", "request": "launch", "program": "/usr/bin/python", "args": [ "${file}" ], "cwd": "${fileDirname}", "stopAtEntry": false, "environment": [], "externalConsole": false, "MIMode": "gdb", "setupCommands": [ { "description": "Enable pretty-printing for gdb", "text": "-enable-pretty-printing", "ignoreFailures": true } ,{ // comment this out, if you dont want to break on throw "text": "-catch-throw", "ignoreFailures": true } ] } ] }