У меня следующая проблема: Когда я подключаю GDB к qemu для отладки, он не прерывается на точках останова. Я могу установить точки останова, порвать с помощью Ctrl+C и т.д.
Любые подсказки, как это можно исправить?
Я имею:
$ qemu --version
QEMU PC emulator version 0.11.0 (qemu-kvm-0.11.0), Copyright (c) 2003-2008 Fabrice Bellard
$ gdb --version
GNU gdb (GDB) 7.0-ubuntu. This GDB was configured as "x86_64-linux-gnu".
Это пример сессии: (И да, это пинто)
gdb -x src/misc/gdb-macros kernel.o
GNU gdb (GDB) 7.0-ubuntu
Copyright (snip...)
License (snip...)
This GDB was configured as "x86_64-linux-gnu".
Reading symbols from ../../threads/build/kernel.o...done.
(gdb) debugpintos
0x0000fff0 in ?? ()
(gdb) break main
Breakpoint 1 at 0xc01000b6: file ../../threads/init.c, line 68.
(gdb) info break
Num Type Disp Enb Address What
1 breakpoint keep y 0xc01000b6 in main at ../../threads/init.c:68
(gdb) cont
Continuing.
Remote connection closed
Любые идеи приветствуются.