user3288812
user3288812

Reputation: 25

fortran 77 and 90 mpi libraries

I compiled openmpi-1.8 using,

shell$ ./configure --prefix=$(pwd) CC=gcc CXX=g++ F77=gfortran FC=gfortran

shell$ make all install

However, I did not see libmpi_f77.so and libmpi_f90.so library files in lib directory. Any ways to obtain these library files.

Appreciate your help.

-Raj

Upvotes: 2

Views: 3517

Answers (1)

Hristo Iliev
Hristo Iliev

Reputation: 74485

The Fortran routines of Open MPI 1.8 are contained in libmpi_mpifh.so.2 and libmpi_usempi*.so.0.

Upvotes: 4

Related Questions