fortran: ifort doesn't have -pipe

pull/4359/head
Dylan Baker 6 years ago
parent 28fd725d61
commit 7329ae3ce6
  1. 6
      mesonbuild/compilers/fortran.py

@ -342,6 +342,12 @@ class IntelFortranCompiler(IntelCompiler, FortranCompiler):
def get_preprocess_only_args(self):
return ['-cpp', '-EP']
def get_always_args(self):
"""Ifort doesn't have -pipe."""
val = super().get_always_args()
val.remove('-pipe')
return val
class PathScaleFortranCompiler(FortranCompiler):
def __init__(self, exelist, version, is_cross, exe_wrapper=None, **kwags):

Loading…
Cancel
Save