使用gdb 7.12-6-(在VirtualBox中的Debian linux上)我在使用步骤时遇到了以下问题
奇怪的是,使用gdb 7.4.1-debian似乎一切正常,并且没有问题(另一台计算机上较旧的virtualbox中的debian linux)
我正在尝试通过代码step
。我不想使用next
,因为我想进入我编写的子程序。
我在进入malloc.c,s_sin.c和其他许多库例程时遇到了问题。
我检查了step-mode
是off
我尝试使用skip /usr/include/*
,skip /usr/include/*/*
,skip /usr/include/*/*/*
我已经查看了以下问题,但没有找到问题的答案
Preventing GDB from stepping into a function (or file)
gdb - skip further step in of certain file by predefined rule?
任何帮助将不胜感激
[我正在使用gcc -g -o程序program.c -lm进行编译