我正在尝试从程序中打印调用堆栈。不幸的是,调用 glibc backtrace() 总是只返回一条记录——当前函数的地址。我正在研究 sh4-linux,这可能会导致问题。我在 x86 架构上打印它没有问题。
示例代码:
#include <string>
#include <iostream>
#include <execinfo.h>
const int maxCalls = 666;
void baz()
{
void *buffer[ maxCalls ];
int stackSize = backtrace( buffer, maxCalls );
char **symbols = backtrace_symbols( buffer, stackSize );
std::string str;
for( unsigned i = 0; i < stackSize; ++i )
{
str+= symbols[i];
}
free( symbols );
std::cout << str<< std::endl;
}
void bar()
{
baz();
}
void foo()
{
bar();
}
int main(int argc, char **argv)
{
foo();
return 0;
}
由以下人员编译:
sh4-linux-g++ test.cpp -g -c -o test.o
sh4-linux-g++ test.o -g -rdynamic -o test
编辑:实际上这段代码工作正常。可能某些编译器标志会在实际项目中导致这种行为。
编译器标志是:-g -O0 -pipe -fpermissive -frtti -fno-exceptions -ffunction-sections
链接器标志:-lpthread -g -rdynamic -Wl,-gc-sections -Wl,--start-group {Files here} -Wl,--end-group --verbose -Xlinker -lm
EDIT2:我发现哪个标志是原因:-fno-exceptions
。谁能告诉我为什么?如果它可以在不跳过此标志的情况下进行修复?
EDIT3:好吧,没关系。看来我实际上可以省略这个标志。