gpt4 book ai didi

c++ - 使用调试选项时 dwarfdump 为空

转载 作者:太空宇宙 更新时间:2023-11-04 14:04:20 25 4
gpt4 key购买 nike

我正在尝试使用 dwarfdump 从 C++ 文件中获取 DWARF 信息。 C++ 文件非常简单 -

int foo();

我通过 g++ -g -c test.cpp 编译它。然后我执行 dwarfdump test.o,但出于某种原因我得到了

----------------------------------------------------------------------
File: test.o (x86_64)
----------------------------------------------------------------------
.debug_info contents:
< EMPTY >

这是为什么?我怎样才能得到我的调试矮人信息?

最佳答案

我想出了问题所在。没有生成调试信息。这是因为优化器意识到 int foo();永远不会被调用,也没有声明,因此不需要调试信息。将函数更改为

int foo(){
int x=5;
}

足以生成调试信息。

关于c++ - 使用调试选项时 dwarfdump 为空,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17686017/

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