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