Boost logo

Boost-Build :

From: K. Noel Belcourt (kbelco_at_[hidden])
Date: 2007-11-02 15:34:32


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) ;
+ }
      else
      {
          toolset.using intel-win :

Thanks.

-- 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