
14 Feb
2004
14 Feb
'04
11:29 a.m.
LINK : fatal error LNK1104: cannot open file "libboost_filesystem-vc6-mt-gd-1_31.lib"
That's the name of the library that bjam would have built for you (multithreading, debug, static library), if you want to link to your own dll then define: BOOST_ALL_NO_LIB : turns off auto-linking. BOOST_ALL_DYN_LIB : turns on dll export/import support (this one needs to be defined both when you build and when you use the lib if you want to link to it as a dll rather than static lib). Full docs are in http://www.boost.org/libs/config/config.htm#user_settable John.