diff options
author | Ralf Gommers <ralf.gommers@googlemail.com> | 2017-07-27 19:25:59 +1200 |
---|---|---|
committer | Ralf Gommers <ralf.gommers@googlemail.com> | 2017-07-27 19:25:59 +1200 |
commit | 8a511c68fada693bfa7283c313bf1de99ad90a6e (patch) | |
tree | 2650ad4a777698ee2f83bf37cee038a246772cca /numpy/distutils/fcompiler/intel.py | |
parent | f3e4a44c43dd5b1adc9f003071badca7f294eceb (diff) | |
download | numpy-8a511c68fada693bfa7283c313bf1de99ad90a6e.tar.gz |
BLD: remove -xhost flag from IntelFCompiler. Closes gh-9042.
Note that this was discussed extensively in gh-7287, but removing
this -xhost flag was missed in the PR that closed that issue.
Diffstat (limited to 'numpy/distutils/fcompiler/intel.py')
-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 [] |