Skip to content

Commit fa14fcd

Browse files
committed
scripts/jlink.gdb: default to continue over stepi
99% of the time we want to `make run-debug` and execute immediately to see logs, not to set breakpoints. `stepi` is less convenient as one has to manually enter `c`/`continue` to start everytime.
1 parent a55659e commit fa14fcd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/jlink.gdb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,5 @@ monitor reset
1313
#break MemManage_Handler
1414

1515
# start running
16-
stepi
16+
# change `continue` to `stepi` to stop execution at the start if you want to set breakpoints etc.
17+
continue

0 commit comments

Comments
 (0)