Skip to content
Snippets Groups Projects
Commit 922edd7b authored by Giovanni Bussi's avatar Giovanni Bussi
Browse files

added note on Intel MPI

parent 772408d7
No related branches found
No related tags found
No related merge requests found
...@@ -670,6 +670,15 @@ ld: TOC section size exceeds 64k ...@@ -670,6 +670,15 @@ ld: TOC section size exceeds 64k
\verbatim \verbatim
export CRAYPE_LINK_TYPE=dynamic export CRAYPE_LINK_TYPE=dynamic
\endverbatim \endverbatim
- Intel MPI seems to require the flags `-lmpi_mt -mt_mpi` for compiling and linking and the flag `-DMPICH_IGNORE_CXX_SEEK` for compiling
(kindly reported by Abhishek Acharya).
You might want to try to configure using
\verbatim
./configure LDFLAGS=-lmpi_mt CXXFLAGS="-DMPICH_IGNORE_CXX_SEEK -mt_mpi" STATIC_LIBS=-mt_mpi
\endverbatim
Adding libraries to `STATIC_LIBS` uses them for all the linking steps, whereas those in `LIBS` are only used when linking the PLUMED kernel library.
See more at [this thread](https://groups.google.com/d/msgid/plumed-users/CAB1aw3y0m%3D5qwzsZY4ZB-aBevsL5iuS%3DmQuSWK_cw527zCMqzg%40mail.gmail.com?utm_medium=email&utm_source=footer).
\endverbatim
\page CodeSpecificNotes Code specific notes \page CodeSpecificNotes Code specific notes
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment