octave: Specify fortran calling-convention for Fujitsu compiler. (#19218)

This commit is contained in:
Tomoki, Karatsu 2020-10-13 06:53:37 +09:00 committed by GitHub
parent a062517d3d
commit 82a224b0da
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -275,6 +275,10 @@ def configure_args(self):
spec.satisfies('^intel-parallel-studio+mkl+ilp64')):
config_args.append('F77_INTEGER_8_FLAG=-fdefault-integer-8')
# Use gfortran calling-convention %fj
if spec.satisfies('%fj'):
config_args.append('--enable-fortran-calling-convention=gfortran')
return config_args
# ========================================================================