Browse Source

Fix typo

lon0
Bill Ladwig 7 years ago
parent
commit
63109fffef
  1. 4
      chey_intel.py

4
chey_intel.py

@ -58,7 +58,7 @@ class IntelFCompiler(BaseIntelFCompiler): @@ -58,7 +58,7 @@ class IntelFCompiler(BaseIntelFCompiler):
def get_flags_opt(self): # Scipy test failures with -O2
v = self.get_version()
mpopt = ''
return ['-fp-model strict -O2 -{}'.format(mpopt)]
return ['-fp-model strict -O2']
def get_flags_arch(self):
return []
@ -124,7 +124,7 @@ class IntelEM64TFCompiler(IntelFCompiler): @@ -124,7 +124,7 @@ class IntelEM64TFCompiler(IntelFCompiler):
def get_flags_opt(self): # Scipy test failures with -O2
v = self.get_version()
mpopt = ''
return ['-fp-model strict -O2 -{}'.format(mpopt)]
return ['-fp-model strict -O2']
def get_flags_arch(self):
return ['']

Loading…
Cancel
Save