Boost logo

Boost-Build :

From: David Abrahams (dave_at_[hidden])
Date: 2007-11-02 17:17:36


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?

> else
> {
> toolset.using intel-win :
>
> Thanks.
>
> -- Noel
>
>
> _______________________________________________
> Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost-build
>

-- 
Dave Abrahams
Boost Consulting
http://www.boost-consulting.com

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