launch-gdb.json 822 B

123456789101112131415161718192021222324252627
  1. {
  2. "version": "0.2.0",
  3. "configurations": [
  4. {
  5. "name": "mzd attach",
  6. "type": "cppdbg",
  7. "request": "attach",
  8. "program": "${workspaceFolder}/target/debug/materialized",
  9. "cwd": "${workspaceFolder}",
  10. "processId": "${command:pickProcess}",
  11. "environment": [],
  12. "MIMode": "gdb",
  13. "miDebuggerPath": "rust-gdb"
  14. },
  15. {
  16. "name": "clusterd attach",
  17. "type": "cppdbg",
  18. "request": "attach",
  19. "program": "${workspaceFolder}/target/debug/clusterd",
  20. "cwd": "${workspaceFolder}",
  21. "processId": "${command:pickProcess}",
  22. "environment": [],
  23. "MIMode": "gdb",
  24. "miDebuggerPath": "rust-gdb"
  25. }
  26. ]
  27. }