Skip to content

Commit

Permalink
Merge pull request easybuilders#3315 from bedroge/ucx_plugins_regular…
Browse files Browse the repository at this point in the history
…_configure

use regular `configure` instead of wrapper script in easyblock for UCX plugins
  • Loading branch information
boegel authored May 3, 2024
2 parents f5b362c + b0035e8 commit ee54421
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion easybuild/easyblocks/u/ucx_plugins.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,12 +77,13 @@ def configure_step(self):
if not get_software_root('UCX'):
raise EasyBuildError("UCX is a required dependency")

self.cfg['configure_cmd'] = 'contrib/configure-release'
self.cfg.update('preconfigopts', 'autoreconf -i &&')

configopts = '--enable-optimizations --without-java --disable-doxygen-doc '
# omit the lib subdirectory since we are just installing plugins
configopts += '--libdir=%(installdir)s '
# include the configure options from contrib/configure-release
configopts += '--disable-logging --disable-debug --disable-assertions --disable-params-check '

cudaroot = get_software_root('CUDAcore') or get_software_root('CUDA')
if cudaroot:
Expand Down

0 comments on commit ee54421

Please sign in to comment.