From 9a32c422f290713a312e18a96cb6f43c850aa4d0 Mon Sep 17 00:00:00 2001 From: Anton-4 <17049058+Anton-4@users.noreply.github.com> Date: Fri, 4 Jul 2025 20:40:34 +0200 Subject: [PATCH] Add tip (#7939) Signed-off-by: Anton-4 <17049058+Anton-4@users.noreply.github.com> --- devtools/debug_tips.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/devtools/debug_tips.md b/devtools/debug_tips.md index 218e5f3389..1f8d02e95c 100644 --- a/devtools/debug_tips.md +++ b/devtools/debug_tips.md @@ -39,7 +39,7 @@ Note that the addresses shown in objdump may use a different offset compared to 5. You probably want to go to the function you saw in valgrind like `List_walkTryHelp_...` [here](https://github.com/roc-lang/examples/pull/192#issuecomment-2269571439). You can use Ctrl+F in the Function s window in IDA free. 6. Right click and choose `Add Breakpoint` at the first instruction of the function you clicked on the previous step. 7. Run the debugger by pressing F9 -8. Use step into (F7) and step over (F8) to see what's going on. Keep an eye on the `General Registers` and `Stack view` windows while you're stepping. +8. Use step into (F7), step over (F8) and run until next breakpoint (F9) to see what's going on. Keep an eye on the `General Registers` and `Stack view` windows while you're stepping. #### gdb