23

这被问了好几次,但我不知道我做错了什么。我正在尝试将当前日期减去 7。这是主要的:

#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

4 回答 4

45

Boost date_time 不是一个只有头文件的库。请构建库,然后添加它。在 gcc 中很简单:

gcc myapp.cpp -omyapp -lboost_date_time

(小心!由于内联,这个库在优化级别和更高级别上偷偷地作为一个仅头文件的库工作-O2;但是当您使用编译器的内联不那么激进的较低优化级别时,它将无法链接。)

于 2013-07-04T19:51:37.233 回答
1

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

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

boost的参考请看这里

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

祝你好运!

于 2013-07-04T19:50:09.427 回答
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)到编译器的路径
祝你好运

于 2013-09-24T09:31:38.353 回答
0

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

带有选项“O2”的“Release”模式构建可以通过的另一个原因,它应该是由于最终代码没有调用gregorian::greg_month相关代码,并且编译器忽略了将未使用的函数链接到目标,所以建筑物被偷偷地通过了。因此,Cyber​​Guy 在 stackoverflow 网站上关于内联参数的评论应该只是一种猜测。

于 2019-11-22T16:39:41.913 回答