Skip to content

Commit bcac86f

Browse files
authored
Merge pull request #12300 from bosilca/fix/accelerator_null_always_static
accelerator null component must be static
2 parents 5727519 + 2d93b88 commit bcac86f

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)