Boost logo

Boost Users :

From: K. Noel Belcourt (kbelco_at_[hidden])
Date: 2007-07-17 11:31:21


On Jul 17, 2007, at 8:02 AM, Charles Karney wrote:

> K. Noel Belcourt wrote:
>>
>> The first argument to the using mpi rule should be the location of
>> the mpicxx script. If it's located in
>>
>> C:/Program Files/MPICH/SDK/Bin
>>
>> then you just need to do this
>>
>> using mpi
>> : "C:/Program Files/MPICH/SDK/Bin/mpicxx"
>> ;
>>
>> for starters. Note that the name of the mpi script might be mpiCC or
>> mpic++, among other possibilities.
>>
>> -- Noel
>
> Thanks for the suggestion.
>
> MPICH for windows doesn't come with a mpicxx or similar script.

Okay, guess you'll have to specify the include paths and libraries
manually. Perhaps something like this

using mpi
        :
        : <include>"C:/Program Files/MPICH/SDK/Include"
          <find-static-library>"C:/Program Files/MPICH/SDK/Lib/mpich.lib"
        ;

would work.

-- Noel


Boost-users list run by williamkempf at hotmail.com, kalb at libertysoft.com, bjorn.karlsson at readsoft.com, gregod at cs.rpi.edu, wekempf at cox.net