I want a开发者_开发知识库 header-only BOOST.
Using boost::bind
and boost::ptr_set
, it seems unnecessary to depend on libboost_date_time
and libboost_regex
. But I get a linker error for those libraries when I build.
LINK : fatal error LNK1104: cannot open file 'libboost_date_time-vc90-mt-s-1_47.lib'
Geenrally you can #define BOOST_ALL_NO_LIB
to disable the auto-linking of the MSVC compiler you are using as documented (see Boost.Config). But of course you still have to compile and link the libraries you do use. Which if you are getting those errors it means that you are likely using the libraries.
#define BOOST_DATE_TIME_NO_LIB
in your compiler Makefile to exclude the datetime
library. #define BOOST_REGEX_NO_LIB
to exclude the regex
library, for example.
You can use the bcp utility to copy the specific portions of Boost that you actually use.
精彩评论