0


【c++ debug】core dump调用栈不显示行号 & no debugging symbols found

1. 问题

  • 问题1gdb ./project显示没有debug符号 Reading symbols from project_name (no debugging symbols found) …done
  • 问题2core dump调用栈不显示行号 … #1 0x00007ffff70ac795 in feature() const at /xxx/.so_path/xxx/project.so

2. 原因

  • 编译没有加 -g 选项。-g用于gdb调试

3. 解决方法

  • CMakeLists.txt加编译选项 -g
add_definitions("-Wall -g")

4. 修改后

  • Reading symbols from project_name …done
  • … #1 0x00007ffff70ac795 in feature() const at /xxx/.so_path/xxx/project.cc:79

参考文章:
没有显示gdb符号
添加-g编译选项

created by shuaixio, 2021.11.30

标签: linux debug gdb

本文转载自: https://blog.csdn.net/baidu_35692628/article/details/121643874
版权归原作者 shuaixio 所有, 如有侵权,请联系我们删除。

“【c++ debug】core dump调用栈不显示行号 & no debugging symbols found”的评论:

还没有评论