1

我正在尝试从程序中打印调用堆栈。不幸的是,调用 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:好吧,没关系。看来我实际上可以省略这个标志。

4

3 回答 3

1

尝试删除“stackSize = 1;”

于 2010-11-28T07:37:39.980 回答
1

需要 glibc 的补丁。看这里

如补丁中所述,使用回溯的用户应用程序需要使用“-fexceptions”进行编译。如果您想要地址的完整符号解析,您也需要“-rdynamic”。

于 2011-05-19T21:58:29.853 回答
0

编译器可能会内联这些函数。可以尝试使用 -O0 选项重新编译。

于 2010-11-25T20:48:15.087 回答