aboutsummaryrefslogtreecommitdiff
path: root/VexRiscvSocSoftware/projects/murax/wip/.vscode/launch.json
diff options
context:
space:
mode:
authorFriedrich Beckmann <friedrich.beckmann@hs-augsburg.de>2022-07-25 17:55:39 +0200
committerFriedrich Beckmann <friedrich.beckmann@hs-augsburg.de>2022-07-25 17:55:39 +0200
commit3fff6023602822531efdae30bc8ebf862967f1ef (patch)
tree16028102b8d850f8ab3115d28a8539ca6bc5f51d /VexRiscvSocSoftware/projects/murax/wip/.vscode/launch.json
Initial Commit
Diffstat (limited to 'VexRiscvSocSoftware/projects/murax/wip/.vscode/launch.json')
-rw-r--r--VexRiscvSocSoftware/projects/murax/wip/.vscode/launch.json33
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