libfabric: add debug variant (#24018)
This commit is contained in:
parent
bd6145589d
commit
c4e4d3587b
1 changed files with 5 additions and 0 deletions
|
@ -64,6 +64,9 @@ class Libfabric(AutotoolsPackage):
|
|||
variant('kdreg', default=False,
|
||||
description='Enable kdreg on supported Cray platforms')
|
||||
|
||||
variant('debug', default=False,
|
||||
description='Enable debugging')
|
||||
|
||||
# For version 1.9.0:
|
||||
# headers: fix forward-declaration of enum fi_collective_op with C++
|
||||
patch('https://github.com/ofiwg/libfabric/commit/2e95b0efd85fa8a3d814128e34ec57ffd357460e.patch',
|
||||
|
@ -95,6 +98,8 @@ def autoreconf(self, spec, prefix):
|
|||
def configure_args(self):
|
||||
args = []
|
||||
|
||||
args.extend(self.enable_or_disable('debug'))
|
||||
|
||||
if '+kdreg' in self.spec:
|
||||
args.append('--with-kdreg=yes')
|
||||
else:
|
||||
|
|
Loading…
Reference in a new issue