Advertisement
Guest User

Untitled

a guest
Jan 21st, 2020
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. {
  2. // Use IntelliSense to learn about possible attributes.
  3. // Hover to view descriptions of existing attributes.
  4. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
  5. "version": "0.2.0",
  6. "configurations": [
  7. {
  8. "name": "Run project",
  9. "type": "cppdbg",
  10. "request": "launch",
  11. "program": "${workspaceRoot}/debugger",
  12. "args": ["testfiles/error.mem" , "0x30"],
  13. "stopAtEntry": false,
  14. "cwd": "${workspaceRoot}",
  15. "environment": [],
  16. "externalConsole": false,
  17. "MIMode": "gdb",
  18. "setupCommands": [
  19. {
  20. "description": "Enable pretty-printing for gdb",
  21. "text": "-enable-pretty-printing",
  22. "ignoreFailures": true
  23. }
  24. ],
  25. "preLaunchTask": "build project",
  26. "miDebuggerPath": "/usr/bin/gdb"
  27. }
  28. ]
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement