如何解决makefile中main的重新定义问题

时间:2018-02-05 14:42:54

标签: c++ makefile

我正在尝试使用makefile编译和链接三个文件到一个可执行文件,但似乎已重新定义main或以某种方式编写/链接进程。该项目是针对一个类,其目标是实现线性反馈移位寄存器,但我们必须使用makefile。

我在哪里重新定义了主?如何更改makefile以创建可执行文件?我注意到错误指向test.o已重新定义main,但我不确定为什么或如何。

错误:

g++ -c main.cpp LFSR.cpp -Wall -Werror -ansi -pedantic
g++ -c test.cpp -Wall -Werror -ansi -pedantic
g++ main.o LFSR.o test.o -o ps2a -lboost_unit_test_framework
test.o: In function `main':
test.cpp:(.text+0xa3): multiple definition of `main'
main.o:main.cpp:(.text+0x0): first defined here
collect2: error: ld returned 1 exit status
Makefile:4: recipe for target 'ps2a' failed
make: *** [ps2a] Error 1

我的makefile:

all: ps2a

ps2a: main.o LFSR.o test.o
     g++ main.o LFSR.o test.o -o ps2a -lboost_unit_test_framework

LFSR.o: LFSR.cpp LFSR.hpp
     g++ -c LFSR.cpp -Wall -Werror -ansi -pedantic

main.o: main.cpp LFSR.hpp
    g++ -c main.cpp LFSR.cpp -Wall -Werror -ansi -pedantic

test.o: test.cpp
    g++ -c test.cpp -Wall -Werror -ansi -pedantic

clean:
    rm *.o ps2a

main.cpp中:

#include "LFSR.hpp"

int main(){
}

LFSR.hpp

#include <string>
#include <iostream>

class LFSR{
public:
    LFSR(std::string, int);
    int step();
    int generate(int k);
private:
    std::string bitString;
    int tapPos;
};

LFSR.cpp:

#include "LFSR.hpp"

void makeBitStringValid(std::string& str);

LFSR::LFSR(std::string str, int t){
}

int LFSR::step(){
    return 0;
}

int LFSR::generate(int k){
    return 0;
}

void makeBitStringValid(std::string& str){
}

test.cpp(注意,这是由教师给出的 - 我还不完全确定它是如何工作的)

#include <iostream>
#include <string>

#include "LFSR.hpp"

#define BOOST_TEST_DYN_LINK
#define BOOST_TEST_MODULE Main
#include <boost/test/unit_test.hpp>

BOOST_AUTO_TEST_CASE(fiveBitsTapAtTwo) {

  LFSR l("00111", 2);
  BOOST_REQUIRE(l.step() == 1);
  BOOST_REQUIRE(l.step() == 1);
  BOOST_REQUIRE(l.step() == 0);
  BOOST_REQUIRE(l.step() == 0);
  BOOST_REQUIRE(l.step() == 0);
  BOOST_REQUIRE(l.step() == 1);
  BOOST_REQUIRE(l.step() == 1);
  BOOST_REQUIRE(l.step() == 0);

  LFSR l2("00111", 2);
  BOOST_REQUIRE(l2.generate(8) == 198);
}

1 个答案:

答案 0 :(得分:4)

不要提供自己的main,因为Boost Unit Test Framework已经在test.cpp中提供了一行:

#define BOOST_TEST_DYN_LINK
#define BOOST_TEST_MODULE Main
#include <boost/test/unit_test.hpp>
  

Dynamic library variant of the UTF

     

与静态库变体函数不同,main()不能驻留在   动态库体。相反,此变体提供默认功能   main()实现作为标题boost/test/unit_test.hpp的一部分   作为测试文件正文的一部分生成。函数main()是   仅在BOOST_TEST_MAIN或BOOST_TEST_MODULE时生成   标志是在测试模块编译期间定义的。对于单文件   测试模块标志可以在测试模块的makefile中定义   在标题boost/test/unit_test.hpp包含之前。对于多文件   测试模块标志不能在makefile中定义,必须定义   只在其中一个测试文件中避免重复的副本   function main()。