Skip to content
Snippets Groups Projects
Commit 4738f12f authored by Eleni Mathioulaki's avatar Eleni Mathioulaki
Browse files

Merge branch 'fix-nest-no-mpi' into 'master'

nest: fix failing build of `nest~mpi`

See merge request technical-coordination/project-internal/devops/platform/ebrains-spack-builds!474
parents 4cdf5eb6 e4e454b3
No related branches found
No related tags found
No related merge requests found
......@@ -93,7 +93,7 @@ class Nest(CMakePackage):
depends_on('boost', when="@2.16:+boost", type='build')
depends_on('py-setuptools@:44.99.99', when='@:2.15.99+python', type='build')
depends_on('py-h5py', when='@3.4.99:+sonata', type=('test', 'build', 'run'))
depends_on('hdf5+cxx', when='@3.4.99:+sonata', type=('build', 'run'))
depends_on('hdf5+cxx', when='@3.4.99:+sonata', type=('build', 'link', 'run'))
depends_on('py-pandas', when='@3.4.99:+sonata', type=('build', 'run'))
depends_on('py-nose', when='@:2.99.99+python+testsuite', type='test')
......@@ -149,7 +149,7 @@ class Nest(CMakePackage):
else:
configure_args.append("--without-optimize")
if 'mpi' in spec:
if '+mpi' in spec:
env['CC'] = spec['mpi'].mpicc
env['CXX'] = spec['mpi'].mpicxx
env['F77'] = spec['mpi'].mpif77
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment