标签: c gcc compilation
此命令
gcc file.c -c
输出我
file.o
如何运行上面的命令,以便输出具有指定名称的对象文件,例如file.dbg.o?
file.dbg.o
答案 0 :(得分:1)
就是这样:
gcc - o file.dbg.o -c file.c