如何查看已编译的 c++ 的机器语言文件?

发布于 2024-12-11 22:08:33 字数 954 浏览 0 评论 0原文

我编写了一个简单的 C++ 程序来打印“Hello World!”

#include <iostream>
using namespace std;
int main(){
cout<<"Hello World!\n";
}

然后我使用 g++ 编译它

$ g++ Desktop/sample.cpp -o Desktop/hello

我如何才能查看机器语言,是吗

$ less Desktop/hello

我只是好奇“机器语言”是什么样子。这是上述命令的示例

C>^D<A1><F4><9E>^D^H<83><F8><FF>t^S<BB><F4><9E>^D^Hf<90><83><EB>^D<FF>Ћ^C<83><F8><FF>u<F4><83><C4>^D[]Ð<90>U
<89><E5>S<83><EC>^D<E8>^@^@^@^@[<81>Ì^X^@^@<E8><<FE><FF><FF>Y[<C9><C3>^C^@^@^@^A^@^B^@Hello World!
^@^@^@^AESC^C; ^@^@^@^C^@^@^@<A4><FE><FF><FF>@^@^@^@<C8><FE><FF><FF>\^@^@^@^H<FF><FF><FF>x^@^

I wrote a simple c++ program that prints "Hello World!"

#include <iostream>
using namespace std;
int main(){
cout<<"Hello World!\n";
}

I then compiled it using g++

$ g++ Desktop/sample.cpp -o Desktop/hello

How would I be able to view the machine language, is it just

$ less Desktop/hello

?

I'm just curious to see what "machine language" looks like. Here's a sample from the above command

C>^D<A1><F4><9E>^D^H<83><F8><FF>t^S<BB><F4><9E>^D^Hf<90><83><EB>^D<FF>Ћ^C<83><F8><FF>u<F4><83><C4>^D[]Ð<90>U
<89><E5>S<83><EC>^D<E8>^@^@^@^@[<81>Ì^X^@^@<E8><<FE><FF><FF>Y[<C9><C3>^C^@^@^@^A^@^B^@Hello World!
^@^@^@^AESC^C; ^@^@^@^C^@^@^@<A4><FE><FF><FF>@^@^@^@<C8><FE><FF><FF>\^@^@^@^H<FF><FF><FF>x^@^

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(4

薔薇婲 2024-12-18 22:08:33

如果使用 -S 选项进行编译,它将吐出汇编器输出并停止。确保使用 -o 选项将输出文件设置为 sample.s

g++ -S -o sample.s sample.cpp

If you compile with the -S option, it will spit out the assembler output and stop. Make sure you use the -o option to set the output file to sample.s:

g++ -S -o sample.s sample.cpp
将军与妓 2024-12-18 22:08:33

您需要这样编译它:

  g++ -g -c -Wa,-alh Desktop/sample.cpp -o Desktop/hello

查看汇编代码:

 objdump -d Desktop/hello

You need to compile it this way:

  g++ -g -c -Wa,-alh Desktop/sample.cpp -o Desktop/hello

The look at the assembler code with:

 objdump -d Desktop/hello
帅冕 2024-12-18 22:08:33

g++生成的二进制文件上使用xxd来查看机器码。汇编是机器代码的抽象版本,不一定是您正在寻找的东西。

Use xxd on the binary generated by g++ to view the machine code. Assembly is an abstract version of machine code and is not neccessarily what you are looking for.

゛时过境迁 2024-12-18 22:08:33

使用 xxd -g 1 你好 | more 查看可执行文件“hello”或您要检查的任何二进制文件的二进制内容。

Use xxd -g 1 hello | more to view the binary content of the executable file 'hello' or any binary file you want to check.

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