[Boost-bugs] [Boost C++ Libraries] #4243: darwin.jam: -mmacosx-version-min not passed to compiler

Subject: [Boost-bugs] [Boost C++ Libraries] #4243: darwin.jam: -mmacosx-version-min not passed to compiler
From: Boost C++ Libraries (noreply_at_[hidden])
Date: 2010-05-19 19:48:39


#4243: darwin.jam: -mmacosx-version-min not passed to compiler
--------------------------+-------------------------------------------------
 Reporter: anonymous | Owner:
     Type: Bugs | Status: new
Milestone: Boost 1.43.0 | Component: Building Boost
  Version: Boost 1.44.0 | Severity: Problem
 Keywords: |
--------------------------+-------------------------------------------------
 In darwin.jam these lines:

 {{{
             case mac* :
             {
                 flags darwin.compile OPTIONS <macosx-version-min
>$(version-feature)
                     : -miphoneos-version-min=$(version[2-]:J=.) ;
                 flags darwin.link OPTIONS <macosx-version-min>$(version-
 feature)
                     : -miphoneos-version-min=$(version[2-]:J=.) ;
             }
 }}}

 Should be:

 {{{
             case mac* :
             {
                 flags darwin.compile OPTIONS <macosx-version-min
>$(version-feature)
                     : -mmacosx-version-min=$(version[2-]:J=.) ;
                 flags darwin.link OPTIONS <macosx-version-min>$(version-
 feature)
                     : -mmacosx-version-min=$(version[2-]:J=.) ;
             }
 }}}

 The bug prevents the option -mmacosx-version-min to be passed to the
 compiler. But this option is essential to get backwards compatible
 binaries.

-- 
Ticket URL: <https://svn.boost.org/trac/boost/ticket/4243>
Boost C++ Libraries <http://www.boost.org/>
Boost provides free peer-reviewed portable C++ source libraries.

This archive was generated by hypermail 2.1.7 : 2017-02-16 18:50:03 UTC