标签: c static-linking
我有一个从C程序编译的静态链接可执行文件。 objdump -x a.out表示.eh_frame部分的存在,即使在strip -s之后也是如此。 为什么此部分在C (非C ++)程序中有用? 剥离它的风险是什么(使用strip -R .eh_frame)?
objdump -x a.out
.eh_frame
strip -s
strip -R .eh_frame
答案 0 :(得分:2)
从remyabel的评论和OP的确认,OP问题的答案可以通过另一个SO问题获得,链接如下:
Why GCC compiled C program needs .eh_frame section?