g++编译选项
将 .cpp 文件编译为 .s 和 .o 而不链接它的选项有哪些。
我使用了 g++ -s -c 但它只生成了 .o 文件。
g++ -s 创建对 main 的未定义引用(因为它是类实现而不是 main)
What are options for compile .cpp file into .s and .o without linking it.
I used g++ -s -c but it only produced .o file.
g++ -s with create undefined reference to main (because it a class implementation not a main)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
生成 asm 文件的选项是
-S
,gcc 上的大写 S(您之前使用的是-s
)。The option to generate asm files is
-S
, capital S on gcc (you were using-s
).