如何阅读 nm 命令:nm 选项 -T 和 -U(未定义)是啥意思?
Posted
技术标签:
【中文标题】如何阅读 nm 命令:nm 选项 -T 和 -U(未定义)是啥意思?【英文标题】:How to read nm commands : What does nm options -T and -U (undefined) mean?如何阅读 nm 命令:nm 选项 -T 和 -U(未定义)是什么意思? 【发布时间】:2017-05-03 17:22:12 【问题描述】:我怀疑来自“libsimint.a”的链接错误。
Linker messages (if any) follow...
/home/.../simint/lib/libsimint.a(shell.c.o): In function `simint_copy_shell':
shell.c:(.text+0x126): undefined reference to `__intel_ssse3_rep_memcpy'
/home/.../simint/lib/libsimint.a(shell.c.o): In function`simint_normalize_shells':
shell.c:(.text+0x4e3): undefined reference to `__svml_pow4'
我尝试了 nm 命令来解决这个问题:
>> nm libsimint.a |grep __intel_ssse3_rep_memcpy
U __intel_ssse3_rep_memcpy
>> nm libsimint.a |grep simint_copy_shell
0000000000000090 T simint_copy_shell
根据我对上述内容的理解(在 nm man 的帮助下),代码中提到了 simint_copy_shell 函数,但 __intel_ssse3_rep_memcpy 未在我们编译 libsimint 的其他库中定义。任何人都可以验证这一点或添加任何说明吗?谢谢
(我正在使用 gcc 编译和链接一个大代码,但它是用 icpc 编译的。)
【问题讨论】:
提示:man nm
.
试过了,但提供的信息有限。
【参考方案1】:
U
表示“未定义”——对象有对符号的引用但没有定义
T
表示在文本段中全局定义——对象定义并导出符号
手册页 (man nm
) 列出了所有这些类型代码。
【讨论】:
以上是关于如何阅读 nm 命令:nm 选项 -T 和 -U(未定义)是啥意思?的主要内容,如果未能解决你的问题,请参考以下文章
异常强大的linux下查看符号信息的命令:ldd,nm,readelf,ar,objdump