如何查看已编译的 c++ 的机器语言文件?
我编写了一个简单的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
如果使用
-S
选项进行编译,它将吐出汇编器输出并停止。确保使用-o
选项将输出文件设置为sample.s
: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 tosample.s
:您需要这样编译它:
查看汇编代码:
You need to compile it this way:
The look at the assembler code with:
在
g++
生成的二进制文件上使用xxd
来查看机器码。汇编是机器代码的抽象版本,不一定是您正在寻找的东西。Use
xxd
on the binary generated byg++
to view the machine code. Assembly is an abstract version of machine code and is not neccessarily what you are looking for.使用 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.