如何检查 c++ Linux下的.o文件?
如何在 Linux 下检查 C++ .o 文件?有没有什么程序可以让我轻松检查它?
how can i examine a c++ .o file unter linux? is there any program with which i could easy examine it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
objdump
是分析目标文件的命令。您具体想检查什么?
objdump
is the command to analyze object files.What do you want to check, exactly?
.o
文件是编译后的翻译输出。它不是 C++,即使生成它的源代码是用 C++ 编写的。您可以从任何编程语言的源代码编译中获得.o
文件。使用 objdump 来查看 .o 文件。
A
.o
file is the translated output from compilation. It is not C++, even if the source code that generated it was written in C++. You could get an.o
file from the compilation of source of any programming language.Use
objdump
to look at.o
files.您还可以使用 nm 命令。
You could also use the
nm
command.