$ objdump -T /lib/libresolv.so.2|grep dn_expand
000040e0 w DF .text 0000005e GLIBC_2.0 dn_expand
000040e0 g DF .text 0000005e GLIBC_2.2 __dn_expand
Looks like the newer glibc abi added a couple of underscores.
try doing a "for i in /lib/lib*.so;do objdump -T $i|grep dn_expand && echo $i;done" ?
undefined reference __dn_expand
最新推荐文章于 2024-05-02 15:24:17 发布
本文详细分析了libresolv.so.2中dn_expand函数的更新,包括新添加的两个下划线,通过命令行示例展示了如何识别这些变化。
2909

被折叠的 条评论
为什么被折叠?



