Fix tpetra-related xsdk errors (#4501)
* Fix tpetra-related xsdk errors Recent changes to the trilinos package broke the xsdk build. xSDK explicitly disables tpetra, but packages depending on it (such as ifpack2 and amesos2) are explicitly enabled by default in the trilinos package. This commit explicitly disables them within the xsdk package.py. * Disabled exodus in the xsdk build See issue #4502 for details
This commit is contained in:
parent
daa5cf7e73
commit
f732598f51
1 changed files with 2 additions and 2 deletions
|
@ -48,9 +48,9 @@ class Xsdk(Package):
|
|||
depends_on('superlu-dist@xsdk-0.2.0', when='@xsdk-0.2.0')
|
||||
depends_on('superlu-dist@develop', when='@develop')
|
||||
|
||||
depends_on('trilinos@xsdk-0.2.0+hypre+superlu-dist+metis+hdf5~mumps+boost~suite-sparse~tpetra',
|
||||
depends_on('trilinos@xsdk-0.2.0+hypre+superlu-dist+metis+hdf5~mumps+boost~suite-sparse~tpetra~ifpack2~zoltan2~amesos2~exodus',
|
||||
when='@xsdk-0.2.0')
|
||||
depends_on('trilinos@develop+xsdkflags+hypre+superlu-dist+metis+hdf5~mumps+boost~suite-sparse~tpetra',
|
||||
depends_on('trilinos@develop+xsdkflags+hypre+superlu-dist+metis+hdf5~mumps+boost~suite-sparse~tpetra~ifpack2~zoltan2~amesos2~exodus',
|
||||
when='@develop')
|
||||
|
||||
depends_on('petsc@xsdk-0.2.0+trilinos+mpi+hypre+superlu-dist+metis+hdf5~mumps~boost',
|
||||
|
|
Loading…
Reference in a new issue