I have ran bjam.exe --build-dir="C:uild-boost" --build-type=minimal msvc stage
and now I have libraries .lib with these headers, for example
libboost_serialization-vc100-mt
libboost_serialization-vc100-mt-1_45
libboost_serialization-vc100-mt-gd
libboost_serialization-vc100-mt-gd-1_45
I believe these should be static libraries for debug and release version. When I run the compiler with Multi-threaded Debug (/MTd)
it gives an error LNK1104: cannot open file 'libboost_serialization-vc100-mt-sgd-1_45.lib'
It is looking for one with -sgd
where am i going wrong?
See Question&Answers more detail:os