g++: cannot specify -o with -c or -S with multiple files 和nm: test.o: File format not reco 的原因和解决方案

       最近写makefile潦草不已, 于是就出现了g++: cannot specify -o with -c or -S with multiple files, 我们看案例:

       test.h:

void output();
       test.cpp:

#include 
#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分钟啊。





 

你可能感兴趣的:(s2:,软件进阶,s2:,Linux杂项,s2:,活捉Bug)