Makefile头目录错误

时间:2015-09-06 02:19:49

标签: c++ unix makefile

我试图弄清楚我一直在犯的错误。我有几个源文件位于assign1目录中,还有一个includes目录(包含bb.h)。我正在尝试做的是在创建bb.h文件时包含gq.o头文件。由于此错误,所有其他目标文件编译正常,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

2 个答案:

答案 0 :(得分:1)

更改

gq.o: gq.cc ac.h bb.h
        g++  -c gq.cc -I./includes/bb.h 

gq.o: gq.cc ac.h
         g++ -c gq.cc -I./includes 

gq.o: gq.cc ac.h includes/bb.h
         g++ -c gq.cc -I./includes 

构建失败的原因是bb.h不在同一目录中。您列出bb.h作为要求,因为它不在那里,尝试生成它但没有找到合适的规则。您需要不将bb.h列为要求,或者指定文件及其路径,以便make看到它存在。您还需要使用-I./includes来指定g ++将在bb.h中查找的搜索目录。

您还需要更改此内容:

output: fr.o vw.o ac.o pg.o gq.o
    g++ -o fr.o gq.o vw.o ac.o pg.o output

有很多问题。首先,您尝试链接具有冲突符号的对象,并且使用-o标志是错误的。根据评论和您的编辑,我认为您想要的是:

output: fr.o vw.o ac.o pg.o gq.o
        g++ -o fr fr.o pg.o
        g++ -o gq gq.o ac.o pq.o
        g++ -o vw vw.o ac.o pg.o

这将生成三个二进制文件,frgqvw,以带有main()符号的三个文件命名。每个只列出解析外部符号所需的对象。

答案 1 :(得分:0)

我可以在Makefile中看到至少两个错误,但在不知道文件布局的情况下无法判断:

以下是我的修正:

output: fr.o vw.o ac.o pg.o gq.o
        g++ -o output fr.o gq.o vw.o ac.o pg.o

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 # need to give path to bb.h
            g++ -c gq.cc -I./includes

clean:
            -rm *.o

如果您仍然遇到问题,请将文件布局发布到问题中。您可以使用此功能:

find .

在项目文件夹中。