arpack-ng: ILP64 support (#15103)
Details about ILP64 support: `INTERFACE64=1` are described on the [ARPACK-NG GitHub website](https://github.com/opencollab/arpack-ng).
This commit is contained in:
parent
9c194b22dc
commit
b37d7b8ed7
@ -108,7 +108,11 @@ def install(self, spec, prefix):
|
||||
if '+mpi' in spec:
|
||||
options.append('-DMPI=ON')
|
||||
|
||||
# TODO: -DINTERFACE64=ON
|
||||
# If 64-bit BLAS is used:
|
||||
if (spec.satisfies('^openblas+ilp64') or
|
||||
spec.satisfies('^intel-mkl+ilp64') or
|
||||
spec.satisfies('^intel-parallel-studio+mkl+ilp64')):
|
||||
options.append('-DINTERFACE64=1')
|
||||
|
||||
if '+shared' in spec:
|
||||
options.append('-DBUILD_SHARED_LIBS=ON')
|
||||
|
Loading…
Reference in New Issue
Block a user