如何检查 c++ Linux下的.o文件?

发布于 2024-10-12 04:32:19 字数 48 浏览 1 评论 0原文

如何在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

别把无礼当个性 2024-10-19 04:32:19

objdump 是分析目标文件的命令。

您具体想检查什么?

objdump is the command to analyze object files.

What do you want to check, exactly?

以往的大感动 2024-10-19 04:32:19

.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.

静谧幽蓝 2024-10-19 04:32:19

您还可以使用 nm 命令。

You could also use the nm command.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文