如何使用3.18内核在没有“程序接收信号SIGILL”的情况下进行调试(3.12工作)?
我试图在Raspbian中用gdb调试程序,但是得到的只是: Program received signal SIGILL, Illegal instruction. 0xb6fe8acc in ?? () from /lib/ld-linux-armhf.so.3 将SIGILL句柄设置为nostop(handle SIGILL nostop)没有帮助: Program received signal SIGILL, Illegal instruction. Program terminated with signal SIGILL, Illegal instruction. The program no longer exists. 我得到的所有回溯是: #0 0xb6fe8acc in ?? () from /lib/ld-linux-armhf.so.3 #1 0x00000000 in ?? () 如果我在gdb之外启动程序,则会收到一个普通的C ++异常(我想调试)。 所有软件已从raspbian存储库更新为最新版本。此外,我尝试了raspberry …