Skip to content

Commit

Permalink
Merge pull request #12300 from bosilca/fix/accelerator_null_always_st…
Browse files Browse the repository at this point in the history
…atic

accelerator null component must be static
  • Loading branch information
bosilca authored Feb 6, 2024
2 parents 5727519 + 2d93b88 commit bcac86f
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions opal/mca/accelerator/null/configure.m4
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# -*- shell-script -*-
#
# Copyright (c) 2024 NVIDIA Corporation.
#
# $COPYRIGHT$
#
# Additional copyrights may follow
#
# $HEADER$
#

AC_DEFUN([MCA_opal_accelerator_null_PRIORITY], [0])

#
# Force this component to compile in static-only mode
#
AC_DEFUN([MCA_opal_accelerator_null_COMPILE_MODE], [
AC_MSG_CHECKING([for MCA component $2:$3 compile mode])
$4="static"
AC_MSG_RESULT([$$4])
])

# MCA_accelerator_null_CONFIG([action-if-can-compile],
# [action-if-cant-compile])
# ------------------------------------------------
AC_DEFUN([MCA_opal_accelerator_null_CONFIG],[
AC_CONFIG_FILES([opal/mca/accelerator/null/Makefile])
])

0 comments on commit bcac86f

Please sign in to comment.