我正在尝试在 Linux 上编译单元测试(增强),但编译器出错。有人可以检查我的命令吗?
g++ -o UTest ../UTest/UT1.cpp ../UTest/UT2.cpp -lboost_system -lboost_thread -lboost_unit_test_framework
错误
/usr/lib/gcc/i686-linux-gnu/4.6/../../../i386-linux-gnu/crt1.o: In function `_start':
(.text+0x18): undefined reference to `main'
我main()
从 g++ 命令中删除了,因为它不应该在使用时boost unit test
使用。
怎么了?
PS 没有单元测试(带有main()
)的项目编译得很好。Windows 上的单元测试也可以正常工作。
更新
问题main()
已解决。但是一个新的诞生了。
两者UT1.cpp
都UT2.cpp
包括在内UTCommon.h
,现在我有很多错误,如下所示
错误
tmp2.cpp:(.text+0xd44a): multiple definition of `boost::unit_test::unit_test_log_t::operator<<(boost::unit_test::lazy_ostream const&)'
/tmp/cc0jw8uR.o:tmp.cpp:(.text+0xd44a): first defined here
/tmp/cctLn9QJ.o: In function `boost::test_tools::tt_detail::equal_impl(char const*, char const*)'
UTCommon.h
#ifndef UT_COMMON_H
#define UT_COMMON_H
#ifndef BOOST_TEST_MODULE
#define BOOST_TEST_MODULE UnitTest
#endif
#if defined (__GNUC__) && defined(__unix__)
#include <boost/test/included/unit_test.hpp>
#elif defined (WIN32)
#include <boost/test/unit_test.hpp>
#endif
#endif