- Note: mpich now builds libmpi.so instead of libmpich.so - define both -DMPICH_SKIP_MPICXX and -DOMPI_SKIP_MPICXX regardless of using openmpi or mpich. This simplifies the files and does not harm.
6 lines
201 B
Plaintext
6 lines
201 B
Plaintext
# Use the system installed openmpi - mpicc must be installed
|
|
|
|
PFLAGS = -DMPICH_SKIP_MPICXX -DOMPI_SKIP_MPICXX
|
|
PINC = $(shell mpicc --showme:compile)
|
|
PLIBS = $(shell mpicc --showme:link)
|