33 lines
1.3 KiB
Diff
33 lines
1.3 KiB
Diff
--- a/src/packaging/envmods/mpich.module.in 2015-02-20 15:48:13.000000000 -0500
|
|
+++ b/src/packaging/envmods/mpich.module.in.new 2015-08-27 15:27:43.667837212 -0400
|
|
@@ -3,12 +3,23 @@
|
|
# MPICH module for use with 'environment-modules' package:
|
|
#
|
|
|
|
+# Only allow one mpi module to be loaded at a time
|
|
+conflict mpi
|
|
+
|
|
# Define prefix so PATH and MANPATH can be updated.
|
|
-setenv prefix @prefix@
|
|
-setenv exec_prefix @exec_prefix@
|
|
+setenv MPI_BIN @LIBDIR@/bin
|
|
+setenv MPI_SYSCONFIG @sysconfdir@/@MPINAME@-@ARCH@
|
|
+setenv MPI_FORTRAN_MOD_DIR @fortranmoddir@/@MPINAME@
|
|
+setenv MPI_INCLUDE @includedir@
|
|
+setenv MPI_LIB @libdir@
|
|
+setenv MPI_MAN @mandir@
|
|
+setenv MPI_PYTHON_SITEARCH @py2sitearch@/@MPINAME@
|
|
+setenv MPI_PYTHON2_SITEARCH @py2sitearch@/@MPINAME@
|
|
+setenv MPI_PYTHON3_SITEARCH @py3sitearch@/@MPINAME@
|
|
+setenv MPI_COMPILER @MPINAME@-@ARCH@
|
|
+setenv MPI_SUFFIX _@MPINAME@
|
|
+setenv MPI_HOME @LIBDIR@
|
|
prepend-path PATH @bindir@
|
|
+prepend-path LD_LIBRARY_PATH @libdir@
|
|
prepend-path MANPATH @mandir@
|
|
-
|
|
-# Undefine prefix and exec_prefix which are too generic environment variables.
|
|
-unsetenv prefix
|
|
-unsetenv exec_prefix
|
|
+prepend-path PKG_CONFIG_PATH @LIBDIR@/lib/pkgconfig
|