diff options
Diffstat (limited to 'VexRiscvSocSoftware/projects/murax/wip/.vscode/launch.json')
-rw-r--r-- | VexRiscvSocSoftware/projects/murax/wip/.vscode/launch.json | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/VexRiscvSocSoftware/projects/murax/wip/.vscode/launch.json b/VexRiscvSocSoftware/projects/murax/wip/.vscode/launch.json new file mode 100644 index 0000000..ef5432a --- /dev/null +++ b/VexRiscvSocSoftware/projects/murax/wip/.vscode/launch.json @@ -0,0 +1,33 @@ +{ + // 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": "riscv64-unknown-elf-gdb", + "type": "cppdbg", + "request": "launch", + "MIMode": "gdb", + "miDebuggerPath": "/opt/riscv/bin/riscv64-unknown-elf-gdb", + "miDebuggerServerAddress": "localhost:3333", + "stopAtEntry": true, + //"preLaunchTask": "make", + "preLaunchTask": null, + "program": "${workspaceFolder}/build/democ.elf", + "args": [], + "environment": [], + "cwd": "${workspaceRoot}/build", + "externalConsole": true, + "setupCommands": + [ + { + "description": "Enable pretty-printing for gdb", + "text": "-enable-pretty-printing", + "ignoreFailures": true + } + ] + } + ] +}
\ No newline at end of file |