diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2017-07-27 10:51:05 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-27 10:51:05 -0500 |
commit | 8faf51250a06dcb7abd0bcece1f86b11059d2c61 (patch) | |
tree | 2650ad4a777698ee2f83bf37cee038a246772cca /numpy | |
parent | f3e4a44c43dd5b1adc9f003071badca7f294eceb (diff) | |
parent | 8a511c68fada693bfa7283c313bf1de99ad90a6e (diff) | |
download | numpy-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.py | 2 |
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 [] |