Hi,
---------------------------- cmd example start ----------------------------------------
gdb ./dynamic-2
Reading symbols from ./dynamic-2...done.
(gdb) target remote :1234
Remote debugging using :1234
0x000000000000fff0 in ?? ()
(gdb) break main
Breakpoint 1 at 0x402011: file sel4-tutorials-manifest/dynamic-2/main.c, line 161.
(gdb) c
Continuing.
Breakpoint 1, main () at sel4-tutorials-manifest/dynamic-2/main.c:161
161
(gdb)
---------------------------- cmd example end ----------------------------------------
So can you help me to explain why I cannot catch the breakpoint? and can we debug the vmm create process with qemu/gdb?
Thanks.