compilers/fortran: Make ifort (windows) proxy extra args to Compiler

pull/5681/head
Dylan Baker 6 years ago
parent 61255eca16
commit 16e04a9bde
  1. 4
      mesonbuild/compilers/fortran.py

@ -276,8 +276,8 @@ class IntelClFortranCompiler(IntelVisualStudioLikeCompiler, FortranCompiler):
'custom': [],
}
def __init__(self, exelist, for_machine: MachineChoice, version, is_cross, target: str, exe_wrapper=None):
FortranCompiler.__init__(self, exelist, for_machine, version, is_cross, exe_wrapper)
def __init__(self, exelist, for_machine: MachineChoice, version, is_cross, target: str, exe_wrapper=None, **kwargs):
FortranCompiler.__init__(self, exelist, for_machine, version, is_cross, exe_wrapper, **kwargs)
IntelVisualStudioLikeCompiler.__init__(self, target)
default_warn_args = ['/warn:general', '/warn:truncated_source']

Loading…
Cancel
Save