mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-03-31 17:10:47 +08:00
Allows parallel + thread-safe combination in Autotools and CMake (#1760)
This commit is contained in:
parent
b9dc83934d
commit
a30342e1d7
@ -830,15 +830,6 @@ if (HDF5_ENABLE_THREADSAFE)
|
||||
message (VERBOSE " **** thread-safety option will not be used building static library **** ")
|
||||
endif ()
|
||||
endif ()
|
||||
if (HDF5_ENABLE_PARALLEL)
|
||||
if (NOT ALLOW_UNSUPPORTED)
|
||||
message (FATAL_ERROR " **** parallel and thread-safety options are not supported, override with ALLOW_UNSUPPORTED option **** ")
|
||||
else ()
|
||||
if (CMAKE_VERSION VERSION_GREATER_EQUAL "3.15.0")
|
||||
message (VERBOSE " **** Allowing unsupported parallel and thread-safety options **** ")
|
||||
endif ()
|
||||
endif ()
|
||||
endif ()
|
||||
if (HDF5_BUILD_FORTRAN)
|
||||
if (NOT ALLOW_UNSUPPORTED)
|
||||
message (FATAL_ERROR " **** Fortran and thread-safety options are not supported, override with ALLOW_UNSUPPORTED option **** ")
|
||||
|
@ -2755,14 +2755,6 @@ if test "X${ALLOW_UNSUPPORTED}" != "Xyes"; then
|
||||
fi
|
||||
fi
|
||||
|
||||
## --enable-parallel is also incompatible with --enable-threadsafe, unless
|
||||
## --enable-unsupported has been specified on the configure line.
|
||||
if test "X${ALLOW_UNSUPPORTED}" != "Xyes"; then
|
||||
if test "X${THREADSAFE}" = "Xyes" -a "X${enable_parallel}" = "Xyes"; then
|
||||
AC_MSG_ERROR([--enable-threadsafe and --enable-parallel flags are incompatible. Use --enable-unsupported to override this error.])
|
||||
fi
|
||||
fi
|
||||
|
||||
AC_MSG_CHECKING([for parallel support files])
|
||||
case "X-$enable_parallel" in
|
||||
X-|X-no|X-none)
|
||||
|
Loading…
x
Reference in New Issue
Block a user