[email protected] writes:
> Hi Larry,
>    Here is the relevant output of the config.log
> This is using --disabled-shared but still
> breaks at the same point.
[snip]
> configure:4580: ./conftest
> ./conftest: error while loading shared libraries: libmpi.so.0: cannot  
> open shared object file: No such file or directory

As the log indicates, in your environment you can't just run an
mpi-compiled application. i.e. this would fail too:

  $ echo -e "#include <mpi.h>\nint main(int argc, char *argv[]) {
      MPI_Init(argc, argv); return 0; }\n" > test.c
  $ mpicc test.c
  $ ./a.out
  ./a.out: error while ....

So... fix that.  The hackiest-but-sure-to-work-way is to hack your
LD_LIBRARY_PATH env var to have the path to the mpi library.  Better is
to just install to standard locations, but of course if you don't have
root, that's probably not an option.

-tom

_______________________________________________
Hdf-forum is for HDF software users discussion.
[email protected]
http://mail.hdfgroup.org/mailman/listinfo/hdf-forum_hdfgroup.org

Reply via email to