3

libtorrent-rasterbar-0.16.16 を msys と mingw でコンパイルしています。./configure は、ブースト ライブラリ チェックに到達するまで正常に実行されます。ブースト 1.51 があり、$BOOST_ROOT を設定しましたが、うまくいきませんでした。

Checking for boost libraries:
checking for boostlib >= 1.36... expr: syntax error
configure: We could not detect the boost libraries (version 1.36 or higher). If
you have a staged boost library (still not installed) please specify $BOOST_ROOT
 in your environment and do not give a PATH to --with-boost option.  If you are
sure you have boost installed, then check your version number looking in <boost/
version.hpp>. See http://randspringer.de/boost for more documentation.
checking whether the Boost::System library is available... no
configure: error: Boost.System library not found. Try using --with-boost-system=
lib

--with-boost-system= オプションを試してみましたが、それもうまくいきませんでした。また、libboost_system-mgw47-mt-1_51.a を libtorrent と同じディレクトリにコピーしましたが、機能しませんでした。

私は何が欠けていますか?

4

1 に答える 1

1

ブースト 1.51 があり、$BOOST_ROOT を設定しましたが、うまくいきませんでした

configure がブースト ヘッダー ファイルを見つけられない可能性が非常に高いです。必要なのはライブラリとソースの両方であり、最善の方法は引き続き BOOST_ROOT を設定することです。

Linux ボックスではboost-develパッケージをインストールしますが、mingw ではブースト ソースを直接ダウンロードして解凍する必要があります。次に、実行していることを確認してください。

BOOST_ROOT=/path/to/boost_1_51 ./configure
于 2014-04-30T13:00:47.963 に答える