インストールメモ

pythonいれたのとserializeいれたのでリコンパイル

C:\boost_1_31_0>bjam -sTOOLS=vc7.1 --with-python-root=C:\Python23jp stage

って、そのままじゃserializeはstageじゃコンパイルできないらしいのでserializeのjamfileに以下を追加してコンパイルする


stage stage/lib : boost_serialization boost_wserialization
:
# copy to a path rooted at BOOST_ROOT:
$(BOOST_ROOT)
# make sure the names of the libraries are correctly named:
[ common-names ]
# add this target to the "stage" and "all" psuedo-targets:
stage
all
:
debug release
;

ちなみにこいつでコンパイルするとマルチスレッドDLLなMSVCRTD.libとくっつくらしく

サンプルもマルチスレッドDLLを選択してビルドしないといけなかった。

直すのもめんどいのでこのままでいいや。プロジェクトを/MDdでコンパイルしてサンプルビルド成功。