trilinos: default gotype=long_long (#26253)

"Long long" is the default type when building trilinos on its own, and
many downstream packages (both in and out of spack) rely on it. E4S
already sets this explicitly to long_long.
This commit is contained in:
Seth R. Johnson
2021-09-26 10:51:23 -04:00
committed by GitHub
parent 3e7cee27d7
commit 7e2fc45354

View File

@@ -65,7 +65,7 @@ class Trilinos(CMakePackage, CudaPackage):
variant('explicit_template_instantiation', default=True, description='Enable explicit template instantiation (ETI)')
variant('float', default=False, description='Enable single precision (float) numbers in Trilinos')
variant('fortran', default=True, description='Compile with Fortran support')
variant('gotype', default='long',
variant('gotype', default='long_long',
values=('int', 'long', 'long_long', 'all'),
multi=False,
description='global ordinal type for Tpetra')