octave: enable 64-bit BLAS builds. (#15035)

* octave: enable 64-bit BLAS builds.

Perform necessary actions [as described in the manual](https://octave.org/doc/v5.2.0/Compiling-Octave-with-64_002dbit-Indexing.html).

* Update package.py
This commit is contained in:
Kai Torben Ohlhus 2020-02-19 14:49:27 +09:00 committed by GitHub
parent 4c215d1fed
commit 26ad754f42
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -269,6 +269,12 @@ def configure_args(self):
else:
config_args.append("--without-z")
# 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')):
config_args.append('F77_INTEGER_8_FLAG=-fdefault-integer-8')
return config_args
# ========================================================================