|
This happens when you use a compiler
wrapper, such as mpic++, as the
compiler. Since all the MPI-related
libraries will be correctly linked, you
can simply edit CMakeCache.txt file to
continue build/install. Look for the
line:
//Where can one of the mpi or mpich libraries be found
MPI_LIBRARY:FILEPATH=MPI_LIBRARY-NOTFOUND
and change (simply remove
MPI_LIBRARY-NOTFOUND)
//Where can one of the mpi or mpich libraries be found
MPI_LIBRARY:FILEPATH=
When a similar message is issued, two
possibilities are i) you don't need to
specify it (already included) or ii)
the library is not where it is supposed
be. First step is to remove
XYZ_LIBRARY-NOTFOUND, and move on.
|