Boost logo

Boost-Build :

From: K. Noel Belcourt (kbelco_at_[hidden])
Date: 2007-11-02 17:23:41


On Nov 2, 2007, at 3:17 PM, David Abrahams wrote:

>
> on Fri Nov 02 2007, "K. Noel Belcourt" <kbelco-AT-sandia.gov> wrote:
>
>> Hi,
>>
>> I'd like to start running intel-9.1 tests on Darwin and the simplest
>> way to do this is to have the intel compiler on MacOSX dispatch to
>> the intel-linux.jam file for now. It is possible that, in the
>> future, we'll need to create a separate intel-darwin.jam file but,
>> for now, most everything seems to compile and link okay using intel-
>> linux.jam.
>>
>> If no one objects, I'd like commit this patch to the trunk.
>>
>> Index: tools/build/v2/tools/intel.jam
>> ===================================================================
>> --- tools/build/v2/tools/intel.jam (revision 40694)
>> +++ tools/build/v2/tools/intel.jam (working copy)
>> @@ -21,6 +21,11 @@
>> toolset.using intel-linux :
>> $(1) : $(2) : $(3) : $(4) : $(5) : $(6) : $(7) : $(8) :
>> $(9) ;
>> }
>> + else if [ os.name ] = MACOSX
>> + {
>> + toolset.using intel-linux :
>> + $(1) : $(2) : $(3) : $(4) : $(5) : $(6) : $(7) : $(8) :
>> $(9) ;
>> + }
>
> Is there a reason not to add "|| [ os.name ] = MACOSX" to the previous
> "if" condition?

No reason at all. I'll make that change when I check it in.

-- Noel


Boost-Build list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk