我按照这篇文章打印堆栈跟踪如何在我的 gcc C++ 应用程序崩溃时生成堆栈跟踪。它在 x86 linux 中运行良好。谁能教我如何让它在 arm-linux 上工作?
我正在使用 arm-linux-gcc 4.4.3。
[root@FriendlyARM /]# ./test1
Error: signal 11:
[0x0]
在 x86 中
mickey@mickeyvm:~/Desktop/workspace/test/testCatchSeg/src$ ./test1
Error: signal 11:
./test1(_Z7handleri+0x19)[0x804876d]
[0xedd400]
./test1(_Z3bazv+0x10)[0x80487c2]
./test1(_Z3barv+0xb)[0x80487e1]
./test1(_Z3foov+0xb)[0x80487ee]
./test1(main+0x22)[0x8048812]
/lib/i386-linux-gnu/libc.so.6(__libc_start_main+0xe7)[0x84de37]
./test1[0x80486c1]
这就是我为 arm-linux 编译的方式
arm-linux-g++ -g -rdynamic ./testCatchSeg.cpp -o testCatchSeg