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
@ -269,6 +269,12 @@ def configure_args(self):
|
|||||||
else:
|
else:
|
||||||
config_args.append("--without-z")
|
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
|
return config_args
|
||||||
|
|
||||||
# ========================================================================
|
# ========================================================================
|
||||||
|
Loading…
Reference in New Issue
Block a user