2

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 ;

ありがとう、ジョー

4

2 に答える 2

0

気にしないでください、私はちょうどドキュメントを見つけました: http ://www.boost.org/doc/libs/1_52_0/more/getting_started/unix-variants.html

どうやら、日時のために何かを構築する必要はありません。まだいくつかの問題がありますが、それは別の質問になります。

ジョー

于 2012-12-26T18:26:22.370 に答える
0

date_time ライブラリを使用しようとしている他の人を助けるためだけに。必要なヘッダー ファイルをコードに含めるだけで、何もビルドする必要はありません。ただし、このエラーが発生した場合:

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

そのファイルに sudo して、それらの行をコメントアウトするだけです。ドキュメントには、これらの関数を自分で作成する必要があると書かれています。

于 2012-12-26T19:07:57.870 に答える