b29b852281
config/ directory. We split them apart a while ago in the hopes that it would simplify things, but it didn't really (e.g., because there were still some ompi/opal .m4 files in the top-level config/ directory, resulting in developer confusion where any given m4 macro was defined). So this commit consolidates them back into the top-level directory for simplicity. There's still (at least) two changes that would be nice to make: 1. Split any generated .m4 file (e.g., autogen-generated .m4 files) into a separate directory somewhere so that a top-level -Iconfig/ will only get our explicitly defined macros, not the autogen stuff (e.g., with libevent2019 needing to get the visibility macro, but NOT all the autogen-generated inclusion of component configure.m4 files). 1. Change configure to be of the form: {{{ # ...a small amount of preamble/setup... OPAL_SETUP m4_ifdef([project_orte], [ORTE_SETUP]) m4_ifdef([project_ompi], [OMPI_SETUP]) # ...a small amount of finishing stuff... }}} I doubt we'll ever get anything as clean as that, but that would be the goal to shoot for. This commit was SVN r27704.
84 строки
3.1 KiB
Plaintext
84 строки
3.1 KiB
Plaintext
dnl
|
|
dnl Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
|
|
dnl University Research and Technology
|
|
dnl Corporation. All rights reserved.
|
|
dnl Copyright (c) 2004-2005 The University of Tennessee and The University
|
|
dnl of Tennessee Research Foundation. All rights
|
|
dnl reserved.
|
|
dnl Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
dnl University of Stuttgart. All rights reserved.
|
|
dnl Copyright (c) 2004-2005 The Regents of the University of California.
|
|
dnl All rights reserved.
|
|
dnl Copyright (c) 2010 Cisco Systems, Inc. All rights reserved.
|
|
dnl $COPYRIGHT$
|
|
dnl
|
|
dnl Additional copyrights may follow
|
|
dnl
|
|
dnl $HEADER$
|
|
dnl
|
|
|
|
AC_DEFUN([OMPI_CONFIG_THREADS],[
|
|
#
|
|
# Arguments: none
|
|
#
|
|
# Dependencies: None
|
|
#
|
|
# Modifies:
|
|
# none - see called tests
|
|
#
|
|
# configure threads
|
|
#
|
|
|
|
#
|
|
# MPI_THREAD_MULTIPLE
|
|
#
|
|
# --enable-mpi-thread-multiple
|
|
# #if OMPI_ENABLE_THREAD_MULTIPLE == 0 /* Not available */
|
|
# #if OMPI_ENABLE_THREAD_MULTIPLE == 1 /* Available */
|
|
#
|
|
AC_MSG_CHECKING([if want MPI_THREAD_MULTIPLE support])
|
|
AC_ARG_ENABLE([mpi_thread_multiple],
|
|
[AC_HELP_STRING([--enable-mpi-thread-multiple],
|
|
[Enable MPI_THREAD_MULTIPLE support (default: disabled)])],
|
|
[enable_mpi_threads="$enableval"],
|
|
[enable_mpi_threads="undef"])
|
|
|
|
# if they did not want OPAL thread support, then they cannot have this option
|
|
if test "$enable_mpi_threads" = "yes" -a "$enable_opal_multi_threads" = "no"; then
|
|
AC_MSG_WARN(["failed"])
|
|
AC_MSG_WARN(["*** You have requested MPI_THREAD_MULTIPLE support but thread"])
|
|
AC_MSG_WARN(["*** support was disabled within the OPAL code base by"])
|
|
AC_MSG_WARN(["*** --disable-opal-multi-threads on your configure command."])
|
|
AC_MSG_ERROR(["*** Can not continue."])
|
|
# if --disable-mpi-thread-multiple
|
|
elif test "$enable_mpi_threads" = "no"; then
|
|
ompi_want_mpi_threads=0
|
|
OMPI_ENABLE_THREAD_MULTIPLE=0
|
|
AC_MSG_RESULT([Disabled])
|
|
#if requested and OPAL thread support is enabled
|
|
elif test "$enable_mpi_threads" = "yes" -a "$enable_opal_multi_threads" = "yes" ; then
|
|
ompi_want_mpi_threads=1
|
|
OMPI_ENABLE_THREAD_MULTIPLE=1
|
|
AC_MSG_RESULT([Enabled])
|
|
#if requested and OPAL thread support was not explicitly enabled or disabled
|
|
elif test "$enable_mpi_threads" = "yes" -a "$enable_opal_multi_threads" = "undef" ; then
|
|
# ensure that OPAL thread support is turned on
|
|
OPAL_ENABLE_MULTI_THREADS=1
|
|
enable_opal_multi_threads="yes"
|
|
AC_DEFINE_UNQUOTED([OPAL_ENABLE_MULTI_THREADS], [$OPAL_ENABLE_MULTI_THREADS],
|
|
[Whether we should enable thread support within the OPAL code base])
|
|
ompi_want_mpi_threads=1
|
|
OMPI_ENABLE_THREAD_MULTIPLE=1
|
|
AC_MSG_RESULT([Enabled - OPAL thread support automatically enabled])
|
|
else
|
|
# Default: disable
|
|
ompi_want_mpi_threads=0
|
|
OMPI_ENABLE_THREAD_MULTIPLE=0
|
|
AC_MSG_RESULT([Disabled])
|
|
fi
|
|
AC_DEFINE_UNQUOTED([OMPI_ENABLE_THREAD_MULTIPLE], [$ompi_want_mpi_threads],
|
|
[Enable MPI_THREAD_MULTIPLE])
|
|
|
|
])dnl
|
|
|