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:
parent
4c215d1fed
commit
26ad754f42
1 changed files with 6 additions and 0 deletions
|
@ -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
|
||||
|
||||
# ========================================================================
|
||||
|
|
Loading…
Reference in a new issue