Skip to content
Snippets Groups Projects
Unverified Commit b37d7b8e authored by Kai Torben Ohlhus's avatar Kai Torben Ohlhus Committed by GitHub
Browse files

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).
parent 9c194b22
Branches
Tags
No related merge requests found
...@@ -108,7 +108,11 @@ def install(self, spec, prefix): ...@@ -108,7 +108,11 @@ def install(self, spec, prefix):
if '+mpi' in spec: if '+mpi' in spec:
options.append('-DMPI=ON') 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: if '+shared' in spec:
options.append('-DBUILD_SHARED_LIBS=ON') options.append('-DBUILD_SHARED_LIBS=ON')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment