2004-07-07 19:58:55 +04:00
|
|
|
If you have checked out a DEVELOPER'S COPY of Open MPI (i.e., you
|
|
|
|
checked out from subversion), you must first run:
|
2004-05-12 09:00:53 +04:00
|
|
|
|
2004-07-07 19:58:55 +04:00
|
|
|
shell$ ./autogen.sh
|
2004-05-12 09:00:53 +04:00
|
|
|
|
2004-07-07 19:58:55 +04:00
|
|
|
You will need very recent versions of GNU Autoconf, Automake, and
|
|
|
|
Libtool. If autogen.sh fails, read the HACKING file.
|
2004-05-12 09:00:53 +04:00
|
|
|
|
2004-07-07 19:58:55 +04:00
|
|
|
Everyone must run "configure" and "make" to build Open MPI. Execute
|
|
|
|
the following commands to install the Open MPI system from within
|
|
|
|
the directory at the top of the tree:
|
2004-05-12 09:00:53 +04:00
|
|
|
|
2004-07-07 19:58:55 +04:00
|
|
|
shell$ ./configure --prefix=/where/to/install
|
|
|
|
shell$ make all install
|
2004-05-12 09:00:53 +04:00
|
|
|
|
2004-07-07 19:58:55 +04:00
|
|
|
To compile an MPI program:
|
2004-05-12 09:00:53 +04:00
|
|
|
|
2004-07-07 19:58:55 +04:00
|
|
|
C programs: mpicc your-code.c
|
|
|
|
C++ programs: mpiCC your-code.cc or
|
|
|
|
mpic++ your-code.cc (for case-insensitive filesystems)
|
|
|
|
F77 programs: mpif77 your-code.f
|
2004-07-01 23:46:39 +04:00
|
|
|
|
2004-07-07 19:58:55 +04:00
|
|
|
We do not yet have a proper mpirun program. There is a script in
|
|
|
|
src/mpirun/mpirun that uses ssh to start individual MPI processes
|
|
|
|
(along with a bunch of associated environment variables); it will
|
|
|
|
eventually be replaced with a real mpirun command.
|