gpt4 book ai didi

c++ - sh4-linux 上的回溯返回一个函数

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:30:00 25 4
gpt4 key购买 nike

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

最佳答案

尝试删除“stackSize = 1;”

关于c++ - sh4-linux 上的回溯返回一个函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4279123/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com