Allow building octave w/ Intel compiler (#31346)

This commit is contained in:
Davide 2022-06-29 12:55:39 -06:00 committed by GitHub
parent 93c16f1ee3
commit 53001cc28c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -305,9 +305,8 @@ def configure_args(self):
spec.satisfies('^intel-parallel-studio+mkl+ilp64')): spec.satisfies('^intel-parallel-studio+mkl+ilp64')):
config_args.append('F77_INTEGER_8_FLAG=-fdefault-integer-8') config_args.append('F77_INTEGER_8_FLAG=-fdefault-integer-8')
# Use gfortran calling-convention %fj # Use gfortran calling-convention
if spec.satisfies('%fj'): config_args.append('--enable-fortran-calling-convention=gfortran')
config_args.append('--enable-fortran-calling-convention=gfortran')
# Make sure we do not use qtchooser # Make sure we do not use qtchooser
config_args.append('ac_cv_prog_ac_ct_QTCHOOSER=') config_args.append('ac_cv_prog_ac_ct_QTCHOOSER=')