Hi Charles, On Jul 16, 2007, at 5:10 PM, Charles Karney wrote:
I'm testing out Boost MPI on Windows following the description in
http://www.generic-programming.org/~dgregor/boost.mpi/doc/mpi/ getting_started.html
I've installed MPICH 1.2.5 (the only one of the tested MPI implementations that works with Windows) in C:\Program Files\MPICH; have checked out boost from the CVS repository; and have bjam 3.1.13.
bjam --with-mpi
then complains about not finding MPI. For example, I tried adding to user-config.jam the following:
using mpi : : "C:/Program Files/MPICH/SDK/Lib/mpich.lib" ;
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