未定义的引用boost :: gregorian :: greg_month :: as_short_string()const

时间:2013-07-04 19:38:10

标签: c++ date boost

这被问了好几次然而我不知道我做错了什么。我试图将当前日期减去7.这是Main:

#include <iostream>
#include <boost/date_time/gregorian/gregorian.hpp>
#include <boost/date_time/date_formatting.hpp>
#include <boost/date_time/gregorian/greg_month.hpp>


using namespace std;
using namespace boost::gregorian;

int main(int argc, char **argv) {

    time_t rawtime;
    struct tm *timeinfo;

    time (&rawtime);
    timeinfo = localtime (&rawtime);

    date cdate(timeinfo->tm_year+1900, timeinfo->tm_mon+1, timeinfo->tm_mday);
    cdate += date_duration(-7);

    string date = to_iso_string(cdate);
    cout << date << endl;
    return 0;
}

当我尝试编译它时,我收到以下错误。

E:/include/boost/date_time/date_formatting.hpp:44: undefined reference to `boost::gregorian::greg_month::as_short_string() const'
E:/include/boost/date_time/date_formatting.hpp:49: undefined reference to `boost::gregorian::greg_month::as_long_string() const'

有人可以帮忙吗?我以为我收录了必要的文件..

4 个答案:

答案 0 :(得分:38)

Boost date_time不是仅限标头的库。请构建库,然后添加它。简单的gcc:

gcc myapp.cpp -omyapp -lboost_date_time

(小心!由于内联,这个库偷偷地出现作为优化级别-O2及更高级别的仅限标题库;但是当您使用时它将无法链接较低的优化级别,其中编译器的内联器不具有攻击性。)

答案 1 :(得分:2)

我认为编译器抱怨包含boost lib。

为了使用boost :: gregorian(boost :: date_time),你需要使用 bjam构建boost库,然后将其链接到FileSystem lib。

提升的参考资料见click here

编辑:根据你上面的内容,问题是无法找到库,mingw似乎不知道它在哪里。可能需要重新安装mingw,或者您可以尝试指定库的特定路径。

祝你好运!

答案 2 :(得分:0)

你应该添加名为

的链接库
libboost_date_time-mgw46-d-1_54.dll.a

(我的路径D:\My Documents\Downloads\boost_1_54_0\bin.v2\libs\date_time\build\gcc-mingw-4.6.2\debug\libboost_date_time-mgw46-d-1_54.dll.a)到编译器的路径
祝你好运

答案 3 :(得分:0)

链接问题的原因是实现的类grep_month部分位于文件boost_xxx_xx_x \ libs \ date_time \ src \ gregorian \ greg_month.cpp中的其他cpp文件中。因此,应将其内置到静态库中或直接内置到目标中。

为什么带有选项“ O2”的“发布”模式可以通过的另一原因,应该是由于最终代码未调用与gregorian :: greg_month相关的代码,并且编译器会忽略链接未使用的功能进入目标,因此建筑物被偷偷地通过。 因此,Cyber​​Guy在stackoverflow网站上对内联参数的评论应该只是猜测。