Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在过去的一个小时里,我一直在尝试输出我使用 g++ -s fileName.cpp 编写的 cpp 文件的汇编文件。终端中的命令执行,但文件目录中不存在程序集文件。帮助!
谢谢你。
这有效:
g++ -S -o asm.s fileName.cpp
(根据评论创建答案,因此可以将问题标记为已回答)