Skip to content
Snippets Groups Projects
Commit d306893d authored by Andrey Prokopenko's avatar Andrey Prokopenko Committed by Todd Gamblin
Browse files

moab: changed trilinos dependency to zoltan, and added fortran variant (#2582)

Trilinos dependency is very heavy, the zoltan one is light. I'm not sure
if there is a situation where one needs the former.
parent d24186ea
No related branches found
No related tags found
No related merge requests found
...@@ -45,6 +45,7 @@ class Moab(Package): ...@@ -45,6 +45,7 @@ class Moab(Package):
description='Required to enable the ExodusII reader/writer.') description='Required to enable the ExodusII reader/writer.')
variant('shared', default=True, variant('shared', default=True,
description='Enables the build of shared libraries') description='Enables the build of shared libraries')
variant('fortran', default=True, description='Enable Fortran support')
# There are many possible variants for MOAB. Here are examples for # There are many possible variants for MOAB. Here are examples for
# two of them: # two of them:
...@@ -58,7 +59,8 @@ class Moab(Package): ...@@ -58,7 +59,8 @@ class Moab(Package):
depends_on('hdf5+mpi') depends_on('hdf5+mpi')
depends_on('netcdf+mpi', when='+netcdf') depends_on('netcdf+mpi', when='+netcdf')
depends_on('parmetis') depends_on('parmetis')
depends_on('trilinos') # looking for zoltan. depends_on('zoltan')
depends_on('zoltan~fortran', when='~fortran')
def install(self, spec, prefix): def install(self, spec, prefix):
...@@ -70,13 +72,15 @@ def install(self, spec, prefix): ...@@ -70,13 +72,15 @@ def install(self, spec, prefix):
'--with-mpi=%s' % spec['mpi'].prefix, '--with-mpi=%s' % spec['mpi'].prefix,
'--with-hdf5=%s' % spec['hdf5'].prefix, '--with-hdf5=%s' % spec['hdf5'].prefix,
'--with-parmetis=%s' % spec['parmetis'].prefix, '--with-parmetis=%s' % spec['parmetis'].prefix,
'--with-zoltan=%s' % spec['trilinos'].prefix, '--with-zoltan=%s' % spec['zoltan'].prefix,
'--disable-vtkMOABReader', '--disable-vtkMOABReader',
'--without-vtk', '--without-vtk',
'CXX=%s' % spec['mpi'].mpicxx, 'CXX=%s' % spec['mpi'].mpicxx,
'CC=%s' % spec['mpi'].mpicc, 'CC=%s' % spec['mpi'].mpicc,
'FC=%s' % spec['mpi'].mpifc] 'FC=%s' % spec['mpi'].mpifc]
if '~fortran' in spec:
options.append('--disable-fortran')
if '+shared' in spec: if '+shared' in spec:
options.append('--enable-shared') options.append('--enable-shared')
if '+netcdf' in spec: if '+netcdf' in spec:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment