# -*- shell-script -*- # # Copyright (c) 2009-2020 Cisco Systems, Inc. All rights reserved # Copyright (c) 2013 Los Alamos National Security, LLC. All rights reserved. # Copyright (c) 2013-2020 Intel, Inc. All rights reserved. # Copyright (c) 2021-2023 Nanook Consulting. All rights reserved. # Copyright (c) 2021-2022 Amazon.com, Inc. or its affiliates. # All Rights reserved. # $COPYRIGHT$ # # Additional copyrights may follow # # $HEADER$ # # MCA_hwloc_CONFIG([action-if-found], [action-if-not-found]) # -------------------------------------------------------------------- AC_DEFUN([PRTE_SETUP_HWLOC],[ PRTE_VAR_SCOPE_PUSH([prte_hwloc_dir prte_hwloc_libdir prte_check_hwloc_save_CPPFLAGS prte_check_hwloc_save_LDFLAGS prte_check_hwloc_save_LIBS]) AC_ARG_WITH([hwloc], [AS_HELP_STRING([--with-hwloc=DIR], [Search for hwloc headers and libraries in DIR ])]) AC_ARG_WITH([hwloc-libdir], [AS_HELP_STRING([--with-hwloc-libdir=DIR], [Search for hwloc libraries in DIR ])]) AC_ARG_WITH([hwloc-extra-libs], [AS_HELP_STRING([--with-hwloc-extra-libs=LIBS], [Add LIBS as dependencies of hwloc])]) AC_ARG_ENABLE([hwloc-lib-checks], [AS_HELP_STRING([--disable-hwloc-lib-checks], [If --disable-hwloc-lib-checks is specified, configure will assume that -lhwloc is available])]) prte_hwloc_support=1 prte_check_hwloc_save_CPPFLAGS="$CPPFLAGS" prte_check_hwloc_save_LDFLAGS="$LDFLAGS" prte_check_hwloc_save_LIBS="$LIBS" if test "$with_hwloc" = "no"; then AC_MSG_WARN([PRRTE requires HWLOC topology library support.]) AC_MSG_WARN([Please reconfigure so we can find the library.]) AC_MSG_ERROR([Cannot continue.]) fi AS_IF([test "$with_hwloc_extra_libs" = "yes" -o "$with_hwloc_extra_libs" = "no"], [AC_MSG_ERROR([--with-hwloc-extra-libs requires an argument other than yes or no])]) AS_IF([test "$enable_hwloc_lib_checks" != "no"], [OAC_CHECK_PACKAGE([hwloc], [prte_hwloc], [hwloc.h], [hwloc $with_hwloc_extra_libs], [hwloc_topology_init], [], [prte_hwloc_support=0])], [PRTE_FLAGS_APPEND_UNIQ([PRTE_FINAL_LIBS], [$with_hwloc_extra_libs])]) if test $prte_hwloc_support -eq 0; then AC_MSG_WARN([PRRTE requires HWLOC topology library support, but]) AC_MSG_WARN([an adequate version of that library was not found.]) AC_MSG_WARN([Please reconfigure and point to a location where]) AC_MSG_WARN([the HWLOC library can be found.]) AC_MSG_ERROR([Cannot continue.]) fi # update global flags to test for HWLOC version PRTE_FLAGS_PREPEND_UNIQ([CPPFLAGS], [$prte_hwloc_CPPFLAGS]) # NOTE: We have already read PRRTE's VERSION file, so we can use # those values prte_hwloc_min_num_version=PRTE_HWLOC_NUMERIC_MIN_VERSION prte_hwloc_min_version=PRTE_HWLOC_MIN_VERSION AC_MSG_CHECKING([version at or above v$prte_hwloc_min_version]) AC_PREPROC_IFELSE([AC_LANG_PROGRAM([ #include #if (HWLOC_API_VERSION < $prte_hwloc_min_num_version) #error "not version $prte_hwloc_min_num_version or above" #endif ], [])], [AC_MSG_RESULT([yes])], [AC_MSG_RESULT(no) AC_MSG_WARN([PRRTE requires HWLOC v$prte_hwloc_min_version or above.]) AC_MSG_ERROR([Please select a supported version and configure again])]) AC_MSG_CHECKING([if hwloc version is greater than 2.x]) AC_PREPROC_IFELSE([AC_LANG_PROGRAM([ #include #if (HWLOC_VERSION_MAJOR > 2) #error "hwloc version is greater than 2.x" #endif ], [])], [AC_MSG_RESULT([no])], [AC_MSG_RESULT([yes]) AC_MSG_WARN([This PRRTE version does not support HWLOC]) AC_MSG_WARN([versions 3.x or higher. Please direct us]) AC_MSG_WARN([to an HWLOC version in the $prte_hwloc_min_version-2.x range.]) AC_MSG_ERROR([Cannot continue])]) # reset global flags CPPFLAGS=$prte_check_hwloc_save_CPPFLAGS PRTE_FLAGS_APPEND_UNIQ([PRTE_FINAL_CPPFLAGS], [$prte_hwloc_CPPFLAGS]) PRTE_FLAGS_APPEND_UNIQ([PRTE_FINAL_LDFLAGS], [$prte_hwloc_LDFLAGS]) PRTE_FLAGS_APPEND_UNIQ([PRTE_FINAL_LIBS], [$prte_hwloc_LIBS]) PRTE_SUMMARY_ADD([Required Packages], [HWLOC], [], [$prte_hwloc_SUMMARY]) PRTE_VAR_SCOPE_POP ])