最近写makefile潦草不已, 于是就出现了g++: cannot specify -o with -c or -S with multiple files, 我们看案例:
test.h:
void output(); test.cpp:
#include <stdio.h>
#include "test.h"
void output()
{
printf("c is good\n");
} 编译:
xxxxxx:~/mkfile> g++ -c test.h test.cpp -o test.o
g++: cannot specify -o with -c or -S with multiple files
xxxxxx:~/mkfile> 意思是说, 在用-o和-c的时候, -c不要指定多个文件。 也是, 编译时根本就不用加上test.h, 编译器会自己去找的, 只要给定了目录即可。
原问题是在大型代码中的, 浪费我15分钟啊。

本文介绍了一个关于使用g++编译器时遇到的常见错误:尝试同时使用-c和-o选项编译多个文件导致的问题。通过一个具体的例子解释了如何避免这种错误,并给出了正确的编译方式。
6394

被折叠的 条评论
为什么被折叠?



