Is it possible to create Boost Log as a dynamic library (.dll / .so), but do it in a static Boost assembly? I would like all other Boost libraries to be static and only Boost Log as .dll (because some DLL files use it in one application).
Do all Boost libraries need to be dynamic in order to get the Boost Log.dll file? I tried adding define = BOOST_LOG_DYN_LINK to my bjam command line, to no avail:
bjam --toolset=msvc-10.0 address-model=64 variant=release,debug link=static threading=multi runtime-link=static define=BOOST_LOG_DYN_LINK
source
share