【发布时间】:2015-09-06 02:19:48
【问题描述】:
我正试图找出我们在 make 中不断遇到的错误。我有几个源文件位于assign1 目录以及includes 目录(包含bb.h)。我要做的是在创建gq.o 文件时包含bb.h 头文件。由于此错误,除gq.o 之外的所有其他目标文件都可以正常编译:
z1755294@hopper:~/assign1/assign1$ make
g++ -c fr.cc
g++ -c vw.cc
g++ -c ac.cc
g++ -c pg.cc
g++ -c gq.cc -I./includes
g++ -o output fr.o gq.o vw.o ac.o pg.o
gq.o: In function `main':
gq.cc:(.text+0x0): multiple definition of `main'
fr.o:fr.cc:(.text+0x0): first defined here
vw.o: In function `main':
vw.cc:(.text+0x0): multiple definition of `main'
fr.o:fr.cc:(.text+0x0): first defined here
collect2: error: ld returned 1 exit status
Makefile:12: recipe for target 'output' failed
make: *** [output] Error 1
这是我的 Makefile:
output: fr.o vw.o ac.o pg.o gq.o
g++ -o fr.o gq.o vw.o ac.o pg.o output
fr.o: fr.cc pg.h
g++ -c fr.cc
vw.o: vw.cc ac.h
g++ -c vw.cc
ac.o: ac.cc ac.h pg.h
g++ -c ac.cc
pg.o: pg.cc pg.h
g++ -c pg.cc
gq.o: gq.cc ac.h includes/bb.h
g++ -c gq.cc -I./includes/bb.h
clean:
-rm *.o
fr.cc, gq.cc and vw.cc all have main functions inside each of them.
ac.cc and fr.cc both have fl(); function they have in common.
gq.cc and vw.cc both have x2(); function they have in common.
我无权编辑以下任何文件。目标是创建一个 makefile,这样如果 bb.h 文件被某人更改,那么 makefile 仍然可以工作。
这是每个文件的文件结构:
ac.cc
#include "ac.h"
#include "pg.h"
#include <iostream>
using std::cout;
using std::endl;
void y7(void)
{
cout << "y7()" << endl;
}
void x2(void)
{
cout << "x2()" << endl;
f1();
}
ac.h
void y7(void);
void x2(void);
fr.cc
#include <iostream>
using std::cout;
using std::endl;
#include "pg.h"
int main()
{
cout << "program fr" << endl;
f1();
return 0;
}
gq.cc
#include <iostream>
using std::cout;
using std::endl;
#include "ac.h"
#include "bb.h"
int main()
{
cout << "program gq" << endl;
x2();
cout << "CONST111: " << CONST111 << endl;
cout << "CONST222: " << CONST222 << endl;
return 0;
}
pg.cc
#include "pg.h"
#include <iostream>
using std::cout;
using std::endl;
void f1(void)
{
cout << "f1()" << endl;
}
void g3(void)
{
cout << "g3()" << endl;
}
pg.h
void f1(void);
void g3(void);
vw.cc
#include <iostream>
using std::cout;
using std::endl;
#include "ac.h"
int main()
{
cout << "program vw" << endl;
x2();
return 0;
}
包括/bb.h
define CONST111 42
#define CONST222 84
【问题讨论】:
-
这是错误的:
-I./includes/bb.h,它应该只指向 目录,而不是文件:-I./includes。当然bb.h必须存在于该目录中。 -
好的,我用你的建议解决了这个问题,现在我得到了:g++ -o fr.o gq.o vw.o ac.o pg.o output g++: error: output: No such file或目录 Makefile:12: 目标“输出”的配方失败 make: *** [输出] 错误 1
-
更改:
g++ -o fr.o gq.o vw.o ac.o pg.o output到:g++ -o output fr.o gq.o vw.o ac.o pg.o