diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2017-06-21 09:55:26 -0600 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2017-06-26 10:20:41 -0600 |
commit | bb21232753efea0b2af0aee458d52c694ad6959a (patch) | |
tree | 3ce43f593881b64a01ae9e52f50969cbe5a90c32 /numpy/distutils/fcompiler/intel.py | |
parent | cfb909f35de8ad238066eb176bc408d86f15c9c8 (diff) | |
download | numpy-bb21232753efea0b2af0aee458d52c694ad6959a.tar.gz |
BUG: Fix Intel compilation on Unix.
Fixes two problems:
* c compilers do not have a find_executables method.
* get_version return a LooseVersion instance, not string.
Closes #9278.
[ci skip]
Diffstat (limited to 'numpy/distutils/fcompiler/intel.py')
-rw-r--r-- | numpy/distutils/fcompiler/intel.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/distutils/fcompiler/intel.py b/numpy/distutils/fcompiler/intel.py index eb6150201..4dee8492f 100644 --- a/numpy/distutils/fcompiler/intel.py +++ b/numpy/distutils/fcompiler/intel.py @@ -57,7 +57,7 @@ class IntelFCompiler(BaseIntelFCompiler): def get_flags_opt(self): # Scipy test failures with -O2 v = self.get_version() - mpopt = 'openmp' if v and int(v.split('.')[0]) < 15 else 'qopenmp' + mpopt = 'openmp' if v and v < '15' else 'qopenmp' return ['-xhost -fp-model strict -O1 -{}'.format(mpopt)] def get_flags_arch(self): @@ -123,7 +123,7 @@ class IntelEM64TFCompiler(IntelFCompiler): def get_flags_opt(self): # Scipy test failures with -O2 v = self.get_version() - mpopt = 'openmp' if v and int(v.split('.')[0]) < 15 else 'qopenmp' + mpopt = 'openmp' if v and v < '15' else 'qopenmp' return ['-fp-model strict -O1 -{}'.format(mpopt)] def get_flags_arch(self): |