Boost C++ Libraries: Ticket #4563: BOOST_AUTO_LINK_TAGGED broken due to misspelled pragma https://svn.boost.org/trac10/ticket/4563 <p> Noticed this while surfing around the source code: </p> <p> As of <a class="changeset" href="https://svn.boost.org/trac10/changeset/61805" title="Add long standing debug-mode python support. Add support for ...">[61805]</a> BOOST_AUTO_LINK_TAGGED feature was added. However, the implementation in the file boost/config/auto_link.hpp:365 is currently broken as pragma reads: </p> <div class="wiki-code"><div class="code"><pre><span class="cp"># pragma commentcomment(lib, BOOST_LIB_PREFIX BOOST_STRINGIZE(BOOST_LIB_NAME) BOOST_LIB_THREAD_OPT BOOST_LIB_RT_OPT &quot;.lib&quot;)</span> </pre></div></div><p> even though it should say: </p> <div class="wiki-code"><div class="code"><pre><span class="cp"># pragma comment(lib, BOOST_LIB_PREFIX BOOST_STRINGIZE(BOOST_LIB_NAME) BOOST_LIB_THREAD_OPT BOOST_LIB_RT_OPT &quot;.lib&quot;)</span> </pre></div></div><p> as stated in the original ticket <a class="closed ticket" href="https://svn.boost.org/trac10/ticket/4041" title="#4041: Bugs: Auto link feature not implemented for &#34;tagged&#34; layout (closed: fixed)">#4041</a>. Because at least MSVC8 emits a mere C4068 (Unknown pragma) warning, this probably went undetected. </p> en-us Boost C++ Libraries /htdocs/site/boost.png https://svn.boost.org/trac10/ticket/4563 Trac 1.4.3 John Maddock Wed, 18 Aug 2010 12:26:33 GMT status changed; resolution set https://svn.boost.org/trac10/ticket/4563#comment:1 https://svn.boost.org/trac10/ticket/4563#comment:1 <ul> <li><strong>status</strong> <span class="trac-field-old">new</span> → <span class="trac-field-new">closed</span> </li> <li><strong>resolution</strong> → <span class="trac-field-new">fixed</span> </li> </ul> <p> (In <a class="changeset" href="https://svn.boost.org/trac10/changeset/64885" title="Fix typo in auto-linking code. Fixes #4563.">[64885]</a>) Fix typo in auto-linking code. Fixes <a class="closed ticket" href="https://svn.boost.org/trac10/ticket/4563" title="#4563: Bugs: BOOST_AUTO_LINK_TAGGED broken due to misspelled pragma (closed: fixed)">#4563</a>. </p> Ticket