如何从 G++ 中的 .o 文件制作 exe/tar.bz2?
有没有办法从 G++ 中的 .o 文件制作 exe 或 tar.bz2 文件?我必须使用 nasm 或任何其他程序来制作 ax 和 tar.bz2,还是可以在 G++ 中使用?
Is there any way to make exe or tar.bz2 file from .o file in G++? Must I use nasm or any else program for making axe and tar.bz2, or it is possible in G++?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要生成 exe,请使用链接器:
g++ -o myprog myob1.o myob2.o
要制作压缩档案,请使用 tar:
tar cjf myarchive.tar.bz2 /path/to/all/my/files/
要制作斧头,请使用两根棍子和三颗钻石。
To make an exe, use the linker:
g++ -o myprog myob1.o myob2.o
To make a compressed archive, use tar:
tar cjf myarchive.tar.bz2 /path/to/all/my/files/
To make an axe, use two sticks and three diamonds.