Boost C++ Libraries: Ticket #4243: darwin.jam: -mmacosx-version-min not passed to compiler https://svn.boost.org/trac10/ticket/4243 <p> In darwin.jam these lines: </p> <pre class="wiki"> case mac* : { flags darwin.compile OPTIONS &lt;macosx-version-min&gt;$(version-feature) : -miphoneos-version-min=$(version[2-]:J=.) ; flags darwin.link OPTIONS &lt;macosx-version-min&gt;$(version-feature) : -miphoneos-version-min=$(version[2-]:J=.) ; } </pre><p> Should be: </p> <pre class="wiki"> case mac* : { flags darwin.compile OPTIONS &lt;macosx-version-min&gt;$(version-feature) : -mmacosx-version-min=$(version[2-]:J=.) ; flags darwin.link OPTIONS &lt;macosx-version-min&gt;$(version-feature) : -mmacosx-version-min=$(version[2-]:J=.) ; } </pre><p> The bug prevents the option -mmacosx-version-min to be passed to the compiler. But this option is essential to get backwards compatible binaries. </p> en-us Boost C++ Libraries /htdocs/site/boost.png https://svn.boost.org/trac10/ticket/4243 Trac 1.4.3 anonymous Mon, 07 Jun 2010 09:49:43 GMT component changed; owner set https://svn.boost.org/trac10/ticket/4243#comment:1 https://svn.boost.org/trac10/ticket/4243#comment:1 <ul> <li><strong>owner</strong> set to <span class="trac-author">Vladimir Prus</span> </li> <li><strong>component</strong> <span class="trac-field-old">Building Boost</span> → <span class="trac-field-new">build</span> </li> </ul> <p> Merge Building Boost with build tool. </p> Ticket Steven Watanabe Tue, 08 Jun 2010 01:06:52 GMT status changed; resolution set https://svn.boost.org/trac10/ticket/4243#comment:2 https://svn.boost.org/trac10/ticket/4243#comment:2 <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/62534" title="Use -mmacosx-version-min instead of -miphoneos-version-min. Fixes #4243">[62534]</a>) Use -mmacosx-version-min instead of -miphoneos-version-min. Fixes <a class="closed ticket" href="https://svn.boost.org/trac10/ticket/4243" title="#4243: Bugs: darwin.jam: -mmacosx-version-min not passed to compiler (closed: fixed)">#4243</a> </p> Ticket