-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- added vscode launch config for debugging of the app running on the …
…qemu simulator - added gdbinit to avoid absolute paths to specuolos
- Loading branch information
microengineer
committed
Feb 9, 2021
1 parent
f80d11b
commit 86c672c
Showing
2 changed files
with
4,024 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{ | ||
// 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": "GDB", | ||
"type": "gdb", | ||
"request": "launch", | ||
"cwd": "${workspaceRoot}", | ||
"target": "${workspaceRoot}/bin/app.elf", | ||
"gdbpath": "gdb-multiarch", | ||
"autorun": [ | ||
"target remote 127.0.0.1:1234", | ||
"source \"${workspaceRoot}/tools/gdbinit\"", | ||
"set architecture arm", | ||
"handle SIGILL nostop pass noprint", | ||
"add-symbol-file \"/home/thomas/git/ledger/speculos/tools/../build/src/launcher\" 0x000101c0", | ||
"add-symbol-file \"${workspaceRoot}/bin/app.elf\" 0x40000000", | ||
"b *0x40000000", | ||
"show" | ||
] | ||
}, | ||
] | ||
} |
Oops, something went wrong.