mirror of
https://github.com/HDFGroup/hdf5.git
synced 2024-11-27 02:10:55 +08:00
dd6c600f72
Turning off collective irregular selection feature for this platform because the MPI package doesn't support MPI complicated derived data type. Description: Solution: Add the macro hdf5_mpi_complex_derived_datatype_works=${hdf5_mpi_complex_derived_datatype_works='no'} at the end of config file. Platforms tested: Won't affect other platform and too minor to go to PSC cluster for testing. Misc. update:
24 lines
731 B
Bash
24 lines
731 B
Bash
# -*- shell-script -*-
|
|
#
|
|
# This file is part of the HDF5 build script. It is processed shortly
|
|
# after configure starts and defines, among other things, flags for
|
|
# the various compile modes.
|
|
#
|
|
# See BlankForm in this directory for detailed information.
|
|
|
|
# The default compiler is `cc'
|
|
if test "X-" = "X-$CC"; then
|
|
CC=cc
|
|
CC_BASENAME=cc
|
|
fi
|
|
|
|
# Try GNU compiler flags.
|
|
. $srcdir/config/gnu-flags
|
|
|
|
# Try native DEC compiler
|
|
ARCH=${ARCH:='-arch host -tune host'}
|
|
. $srcdir/config/dec-flags
|
|
# DEC MPI-IO implementation has a bug,
|
|
#it cannot generate correct MPI derived datatype.
|
|
hdf5_mpi_complex_derived_datatype_works=${hdf5_mpi_complex_derived_datatype_works='no'}
|