diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2019-09-17 17:52:16 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2019-09-17 17:52:16 (GMT) |
commit | f5a84c9856888446e329dd36bff842e5a2db708c (patch) | |
tree | af69481dd77ac3c731b9dd264e451b940f7f54c9 /src/H5public.h | |
parent | 046e6e8770212dc020279aba1d7a5c9aa5ec5913 (diff) | |
download | hdf5-f5a84c9856888446e329dd36bff842e5a2db708c.zip hdf5-f5a84c9856888446e329dd36bff842e5a2db708c.tar.gz hdf5-f5a84c9856888446e329dd36bff842e5a2db708c.tar.bz2 |
Added MPICH_SKIP_MPICXX and OMPI_SKIP_CXX to H5public.h to avoid inadvertant
linking to the deprecated MPI C++ wrappers. Fixes HDFFV-10893.
Diffstat (limited to 'src/H5public.h')
-rw-r--r-- | src/H5public.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/H5public.h b/src/H5public.h index a7e21f6..b79fcfb 100644 --- a/src/H5public.h +++ b/src/H5public.h @@ -57,6 +57,9 @@ # include <stddef.h> #endif #ifdef H5_HAVE_PARALLEL +/* Don't link against MPI C++ bindings */ +# define MPICH_SKIP_MPICXX 1 +# define OMPI_SKIP_MPICXX 1 # include <mpi.h> #ifndef MPI_FILE_NULL /*MPIO may be defined in mpi.h already */ # include <mpio.h> |