Boost logo

Boost-Build :

From: K. Noel Belcourt (kbelco_at_[hidden])
Date: 2007-12-26 14:12:09


Hi,

I'd like to add support for the intel 9.x and 10.x compilers on
darwin. Because of significant differences from the intel-linux
toolset, I'd like to add an intel-darwin toolset to the trunk.

Here's the diff to intel.jam to dispatch to intel-darwin.jam.

Index: tools/build/v2/tools/intel.jam
===================================================================
--- tools/build/v2/tools/intel.jam (revision 42307)
+++ tools/build/v2/tools/intel.jam (working copy)
@@ -16,11 +16,16 @@
rule init ( * : * )
{
- if [ os.name ] = LINUX || [ os.name ] = MACOSX
+ if [ os.name ] = LINUX
      {
          toolset.using intel-linux :
            $(1) : $(2) : $(3) : $(4) : $(5) : $(6) : $(7) : $(8) :
$(9) ;
      }
+ else if [ os.name ] = MACOSX
+ {
+ toolset.using intel-darwin :
+ $(1) : $(2) : $(3) : $(4) : $(5) : $(6) : $(7) : $(8) :
$(9) ;
+ }
      else
      {
          toolset.using intel-win :

I've attached my first pass for intel-darwin.jam for your reading
pleasure. If there's no objection, I'll commit this to the trunk.

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