我正在尝试构建Boost date_time库,以便可以将其链接到我的Makefile中。
我在“libs / date_time / build”中,看到一个寂寞的“Jamfile.v2”,如果我输入jam,则会得到:

Jamfile: No such file or directory
...found 7 target(s)...

我现在不知道该怎么办,在Boost文档中找不到有关date_time安装的任何信息。

这是文档中的文本:
# Boost.date_time build and test Jamfile
#
#  Based on boost.python Jamfile
#
# To run all tests quietly: jam test
#
# Declares the following targets:
#   1. libboost_date_time, a static link library to be linked with all
#      Boost.date_time modules
#


project boost/date_time
    : requirements
        <define>DATE_TIME_INLINE
    <link>shared:<define>BOOST_ALL_DYN_LINK=1
    <link>static:<define>BOOST_DATE_TIME_STATIC_LINK
    : usage-requirements
        <define>DATE_TIME_INLINE
        <link>shared:<define>BOOST_DATE_TIME_DYN_LINK=1
    : source-location ../src
    ;

# Base names of the source files for libboost_date_time
CPP_SOURCES = greg_month greg_weekday date_generators ;

lib boost_date_time : gregorian/$(CPP_SOURCES).cpp ;

boost-install boost_date_time ;

谢谢,

最佳答案

没关系,我只是找到了文档:
http://www.boost.org/doc/libs/1_52_0/more/getting_started/unix-variants.html

显然,不需要为日期时间构建任何内容。
仍然有一些问题,但这将是一个不同的问题。

10-08 11:01