id,summary,reporter,owner,description,type,status,milestone,component,version,severity,resolution,keywords,cc 4041,"Auto link feature not implemented for ""tagged"" layout",Devin Crumb ,John Maddock,"When the bjam option ""--layout=tagged"" is used, the auto link feature does not work as there is no way #define for a tagged layout. To fix this, I changed: {{{ #ifndef BOOST_AUTO_LINK_NOMANGLE # pragma comment(lib, BOOST_LIB_PREFIX BOOST_STRINGIZE(BOOST_LIB_NAME) ""-"" BOOST_LIB_TOOLSET BOOST_LIB_THREAD_OPT BOOST_LIB_RT_OPT ""-"" BOOST_LIB_VERSION "".lib"") # ifdef BOOST_LIB_DIAGNOSTIC # pragma message (""Linking to lib file: "" BOOST_LIB_PREFIX BOOST_STRINGIZE(BOOST_LIB_NAME) ""-"" BOOST_LIB_TOOLSET BOOST_LIB_THREAD_OPT BOOST_LIB_RT_OPT ""-"" BOOST_LIB_VERSION "".lib"") # endif #else # pragma comment(lib, BOOST_STRINGIZE(BOOST_LIB_NAME) "".lib"") # ifdef BOOST_LIB_DIAGNOSTIC # pragma message (""Linking to lib file: "" BOOST_STRINGIZE(BOOST_LIB_NAME) "".lib"") # endif #endif }}} to: {{{ #ifdef BOOST_AUTO_LINK_TAGGED # pragma comment(lib, BOOST_LIB_PREFIX BOOST_STRINGIZE(BOOST_LIB_NAME) BOOST_LIB_THREAD_OPT BOOST_LIB_RT_OPT "".lib"") # ifdef BOOST_LIB_DIAGNOSTIC # pragma message (""Linking to lib file: "" BOOST_LIB_PREFIX BOOST_STRINGIZE(BOOST_LIB_NAME) BOOST_LIB_THREAD_OPT BOOST_LIB_RT_OPT "".lib"") # endif #else #ifndef BOOST_AUTO_LINK_NOMANGLE # pragma comment(lib, BOOST_LIB_PREFIX BOOST_STRINGIZE(BOOST_LIB_NAME) ""-"" BOOST_LIB_TOOLSET BOOST_LIB_THREAD_OPT BOOST_LIB_RT_OPT ""-"" BOOST_LIB_VERSION "".lib"") # ifdef BOOST_LIB_DIAGNOSTIC # pragma message (""Linking to lib file: "" BOOST_LIB_PREFIX BOOST_STRINGIZE(BOOST_LIB_NAME) ""-"" BOOST_LIB_TOOLSET BOOST_LIB_THREAD_OPT BOOST_LIB_RT_OPT ""-"" BOOST_LIB_VERSION "".lib"") # endif #else # pragma comment(lib, BOOST_LIB_PREFIX BOOST_STRINGIZE(BOOST_LIB_NAME) "".lib"") # ifdef BOOST_LIB_DIAGNOSTIC # pragma message (""Linking to lib file: "" BOOST_STRINGIZE(BOOST_LIB_NAME) "".lib"") # endif #endif #endif }}} in boost\boost\config\auto_link.hpp.",Bugs,closed,Boost 1.43.0,config,Boost 1.42.0,Problem,fixed,,