为什么gdb不能显示调试信息?

时间:2016-07-15 14:10:18

标签: c++ gcc gdb kernel cross-compiling

这是我的g ++:

$ /usr/local/gcc-4.8.1-for-linux32/bin/i586-pc-linux-g++ -v
Using built-in specs.
COLLECT_GCC=/usr/local/gcc-4.8.1-for-linux32/bin/i586-pc-linux-g++
COLLECT_LTO_WRAPPER=/usr/local/gcc-4.8.1-for-linux32/libexec/gcc/i586-pc-linux/4.8.1/lto-wrapper
Target: i586-pc-linux
Configured with: ../gcc-4.8.1/configure --target=i586-pc-linux --build=i686-apple-darwin11 --prefix=/usr/local/gcc-4.8.1-for-linux32 --disable-multilib --enable-languages=c,c++ --enable-threads=posix --enable-__cxa_atexit --enable-clocale=gnu --disable-bootstrap
Thread model: posix
gcc version 4.8.1 (GCC)

GDB:

$ i386-linux-gdb -v
GNU gdb (GDB) 7.7.1
This GDB was configured as "--host=x86_64-apple-darwin15.5.0 --target=i386-linux".

CXX_FLAGS:

-ffreestanding -O0 -Wall -Wextra -fno-exceptions -fno-rtti -ggdb -nostdlib -std=c++11 -m32

生成kernel.bin

/usr/local/gcc-4.8.1-for-linux32/bin/i586-pc-linux-g++ -I. -Iinclude -Ikernel -ffreestanding -O0 -Wall -Wextra -fno-exceptions -fno-rtti -ggdb -nostdlib -std=c++11 -m32 -e main -Ttext 0x100000 -o generated/kernel.bin generated/kernel/init/kernelMain.o generated/kernel/memoryManage/memoryManage.o
/usr/local/gcc-4.8.1-for-linux32/bin/i586-pc-linux-objdump -S -D generated/kernel.bin > generated/kernel.dump 

我使用qemu-i386加载我的玩具操作系统,然后我的引导程序将解析kernel.bin,将段放入内存。然后我在我的主机操作系统(OS X 10.11)中启动gdb,执行:

file ./generated/kernel.bin
target remote localhost:1234
b initMemory
c

我可以成功停止initMemory中的memoryManage.o功能。

8: x/i 0x100000 + $eip
   0x100010 <initMemory()>: push   %ebp

但是,当我执行nsp时,它无效。我只能使用si ni

(gdb) n
Cannot find bounds of current function
(gdb) s
Cannot find bounds of current function
(gdb) p memoryInfoAddr
No symbol "memoryInfoAddr" in current context.

如何解决此问题?是由于i586 g ++和i386 gdb的不匹配,还是gcc 4.8.1和gdb 7.7.1的不匹配引起的?

1 个答案:

答案 0 :(得分:1)

最后我找出问题所在。 gdb使用%eip来查找指令,但是在我的内核中它应该使用%cs:%eip。将%cs设置为0后,gdb按预期工作。