Skip to content

Commit a71d5c9

Browse files
Merge pull request #2940 from ggouaillardet/topic/hetero_fixes
misc fixes for heterogeneous cluster support
2 parents c18007d + 7a866f7 commit a71d5c9

30 files changed

+569
-349
lines changed

config/opal_configure_options.m4

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,22 @@ fi
286286
AC_DEFINE_UNQUOTED(OPAL_ENABLE_DLOPEN_SUPPORT, $OPAL_ENABLE_DLOPEN_SUPPORT,
287287
[Whether we want to enable dlopen support])
288288

289-
opal_want_heterogeneous=0
289+
#
290+
# Heterogeneous support
291+
#
292+
293+
AC_MSG_CHECKING([if want heterogeneous support])
294+
AC_ARG_ENABLE([heterogeneous],
295+
[AC_HELP_STRING([--enable-heterogeneous],
296+
[Enable features required for heterogeneous
297+
platform support (default: disabled)])])
298+
if test "$enable_heterogeneous" = "yes" ; then
299+
AC_MSG_RESULT([yes])
300+
opal_want_heterogeneous=1
301+
else
302+
AC_MSG_RESULT([no])
303+
opal_want_heterogeneous=0
304+
fi
290305
AC_DEFINE_UNQUOTED([OPAL_ENABLE_HETEROGENEOUS_SUPPORT],
291306
[$opal_want_heterogeneous],
292307
[Enable features required for heterogeneous support])

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -599,7 +599,7 @@ AC_CHECK_HEADERS([alloca.h aio.h arpa/inet.h dirent.h \
599599
sys/types.h sys/uio.h sys/un.h net/uio.h sys/utsname.h sys/vfs.h sys/wait.h syslog.h \
600600
termios.h ulimit.h unistd.h util.h utmp.h malloc.h \
601601
ifaddrs.h crt_externs.h regex.h mntent.h paths.h \
602-
ioLib.h sockLib.h hostLib.h shlwapi.h sys/synch.h db.h ndbm.h zlib.h])
602+
ioLib.h sockLib.h hostLib.h shlwapi.h sys/synch.h db.h ndbm.h zlib.h ieee754.h])
603603

604604
AC_CHECK_HEADERS([sys/mount.h], [], [],
605605
[AC_INCLUDES_DEFAULT

0 commit comments

Comments
 (0)