From 63109fffef9047caaee8cb5a2d142b5a9f66c5b6 Mon Sep 17 00:00:00 2001 From: Bill Ladwig Date: Thu, 1 Feb 2018 14:12:51 -0700 Subject: [PATCH] Fix typo --- chey_intel.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/chey_intel.py b/chey_intel.py index 8ba16b7..78d194f 100644 --- a/chey_intel.py +++ b/chey_intel.py @@ -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): 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 ['']