summaryrefslogtreecommitdiff
path: root/numpy
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2017-07-27 10:51:05 -0500
committerGitHub <noreply@github.com>2017-07-27 10:51:05 -0500
commit8faf51250a06dcb7abd0bcece1f86b11059d2c61 (patch)
tree2650ad4a777698ee2f83bf37cee038a246772cca /numpy
parentf3e4a44c43dd5b1adc9f003071badca7f294eceb (diff)
parent8a511c68fada693bfa7283c313bf1de99ad90a6e (diff)
downloadnumpy-8faf51250a06dcb7abd0bcece1f86b11059d2c61.tar.gz
Merge pull request #9471 from rgommers/remove-xhost-flag
BLD: remove -xhost flag from IntelFCompiler.
Diffstat (limited to 'numpy')
-rw-r--r--numpy/distutils/fcompiler/intel.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/distutils/fcompiler/intel.py b/numpy/distutils/fcompiler/intel.py
index 4dee8492f..e3b922edc 100644
--- a/numpy/distutils/fcompiler/intel.py
+++ b/numpy/distutils/fcompiler/intel.py
@@ -58,7 +58,7 @@ class IntelFCompiler(BaseIntelFCompiler):
def get_flags_opt(self): # Scipy test failures with -O2
v = self.get_version()
mpopt = 'openmp' if v and v < '15' else 'qopenmp'
- return ['-xhost -fp-model strict -O1 -{}'.format(mpopt)]
+ return ['-fp-model strict -O1 -{}'.format(mpopt)]
def get_flags_arch(self):
return []