1
1
openmpi/ompi/mca/bcol/iboffload/configure.m4
Brian Barrett b8442ba505 Revamp the handling of wrapper compiler flags. The user flags, main configure
flags, and mca flags are kept seperate until the very end.  The main configure
wrapper flags should now be modified by using the OPAL_WRAPPER_FLAGS_ADD
macro.  MCA components should either let <framework>_<component>_{LIBS,LDFLAGS}
be copied over OR set <framework>_<component>_WRAPPER_EXTRA_{LIBS,LDFLAGS}.
The situations in which WRAPPER CPPFLAGS can be set by MCA components was
made very small to match the one use case where it makes sense.

This commit was SVN r27950.
2013-01-29 00:00:43 +00:00

39 строки
1.2 KiB
Bash

# -*- shell-script -*-
#
# Copyright (c) 2009-2012 Oak Ridge National Laboratory. All rights reserved.
# Copyright (c) 2009-2012 Mellanox Technologies. All rights reserved.
# $COPYRIGHT$
#
# Additional copyrights may follow
#
# $HEADER$
#
# MCA_ompi_bcol_iboffload_CONFIG([should_build])
# ------------------------------------------
# AC_DEFUN([MCA_ompi_bcol_iboffload_POST_CONFIG], [
# ])
# MCA_ompi_bcol_iboffload_CONFIG([action-if-can-compile],
# [action-if-cant-compile])
# ------------------------------------------------
AC_DEFUN([MCA_ompi_bcol_iboffload_CONFIG],[
AC_CONFIG_FILES([ompi/mca/bcol/iboffload/Makefile])
bcol_ofa_happy="no"
bcol_mlnx_ofed_happy="no"
OMPI_CHECK_OPENFABRICS([bcol_iboffload], [bcol_ofa_happy="yes"])
OMPI_CHECK_MLNX_OPENFABRICS([bcol_iboffload], [bcol_mlnx_ofed_happy="yes"])
AS_IF([test "$bcol_ofa_happy" = "yes" -a "$bcol_mlnx_ofed_happy" = "yes"],
[$1],
[$2])
# substitute in the things needed to build iboffload
AC_SUBST([bcol_iboffload_CFLAGS])
AC_SUBST([bcol_iboffload_CPPFLAGS])
AC_SUBST([bcol_iboffload_LDFLAGS])
AC_SUBST([bcol_iboffload_LIBS])
])dnl