launch.json 713 B

12345678910111213141516171819
  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. "type": "gdb",
  9. "request": "attach",
  10. "name": "Attach to gdbserver",
  11. "executable": "${workspaceRoot}/target/riscv64imac-unknown-none-elf/release/rustsbi-prototyper",
  12. "target": "127.0.0.1:1234",
  13. "remote": true,
  14. "cwd": "${workspaceRoot}/prototyper/src",
  15. "valuesFormatting": "parseText",
  16. "gdbpath": "/usr/bin/riscv64-linux-gnu-gdb"
  17. }
  18. ]
  19. }