Skip to content

Commit 2d93b88

Browse files
committed
accelerator null component must be static
This component is always required and should not be influenced by the user defined mca_component_path. Signed-off-by: George Bosilca <bosilca@icl.utk.edu>
1 parent e53e700 commit 2d93b88

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# -*- shell-script -*-
2+
#
3+
# Copyright (c) 2024 NVIDIA Corporation.
4+
#
5+
# $COPYRIGHT$
6+
#
7+
# Additional copyrights may follow
8+
#
9+
# $HEADER$
10+
#
11+
12+
AC_DEFUN([MCA_opal_accelerator_null_PRIORITY], [0])
13+
14+
#
15+
# Force this component to compile in static-only mode
16+
#
17+
AC_DEFUN([MCA_opal_accelerator_null_COMPILE_MODE], [
18+
AC_MSG_CHECKING([for MCA component $2:$3 compile mode])
19+
$4="static"
20+
AC_MSG_RESULT([$$4])
21+
])
22+
23+
# MCA_accelerator_null_CONFIG([action-if-can-compile],
24+
# [action-if-cant-compile])
25+
# ------------------------------------------------
26+
AC_DEFUN([MCA_opal_accelerator_null_CONFIG],[
27+
AC_CONFIG_FILES([opal/mca/accelerator/null/Makefile])
28+
])

0 commit comments

Comments
 (0)