diff options
author | Denis Davydov <davydden@gmail.com> | 2016-05-04 10:37:52 +0200 |
---|---|---|
committer | Denis Davydov <davydden@gmail.com> | 2016-05-04 10:37:52 +0200 |
commit | c3317819cb89abdcd9fe1cb9431436c4e4ef8702 (patch) | |
tree | 8ba7ee1c701208822df6b8380a1e1ca9de2c40cf /lib | |
parent | 60048c655022c3bf151c6984360ee0ce6e0cf18d (diff) | |
download | spack-c3317819cb89abdcd9fe1cb9431436c4e4ef8702.tar.gz spack-c3317819cb89abdcd9fe1cb9431436c4e4ef8702.tar.bz2 spack-c3317819cb89abdcd9fe1cb9431436c4e4ef8702.tar.xz spack-c3317819cb89abdcd9fe1cb9431436c4e4ef8702.zip |
mpi: add self.spec.[mpicc|mpicxx|mpifc|mpif77] to avoid hardcoding MPI wrappers names
Diffstat (limited to 'lib')
-rw-r--r-- | lib/spack/docs/packaging_guide.rst | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/lib/spack/docs/packaging_guide.rst b/lib/spack/docs/packaging_guide.rst index 519c0da232..34d11308f5 100644 --- a/lib/spack/docs/packaging_guide.rst +++ b/lib/spack/docs/packaging_guide.rst @@ -1831,6 +1831,23 @@ successfully find ``libdwarf.h`` and ``libdwarf.so``, without the packager having to provide ``--with-libdwarf=/path/to/libdwarf`` on the command line. +Message Parsing Interface (MPI) +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +It is common for high performance computing software/packages to use ``MPI``. +As a result of conretization, a given package can be built using different +implementations of MPI such as ``Openmpi``, ``MPICH`` or ``IntelMPI``. +In some scenarios to configure a package one have to provide it with appropriate MPI +compiler wrappers such as ``mpicc``, ``mpic++``. +However different implementations of ``MPI`` may have different names for those +wrappers. In order to make package's ``install()`` method indifferent to the +choice ``MPI`` implementation, each package which implements ``MPI`` sets up +``self.spec.mpicc``, ``self.spec.mpicxx``, ``self.spec.mpifc`` and ``self.spec.mpif77`` +to point to ``C``, ``C++``, ``Fortran 90`` and ``Fortran 77`` ``MPI`` wrappers. +Package developers are advised to use these variables, for example ``self.spec['mpi'].mpicc`` +instead of hard-coding ``join_path(self.spec['mpi'].prefix.bin, 'mpicc')`` for +the reasons outlined above. + + Forking ``install()`` ~~~~~~~~~~~~~~~~~~~~~ |