diff options
author | David Cournapeau <cournape@gmail.com> | 2009-06-20 16:41:38 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2009-06-20 16:41:38 +0000 |
commit | 447de9dd5a146b8c008f1f401eb53ce8bd67461f (patch) | |
tree | ef7d6e85f72e8766f7d5dd3c4a0aec0918a29de6 /numpy/distutils/fcompiler/intel.py | |
parent | 87fa5aecfd318157fed0cac274619b7d863381b7 (diff) | |
download | numpy-447de9dd5a146b8c008f1f401eb53ce8bd67461f.tar.gz |
BUG: update version_match for recent version of ifort for IA-64 (#1145).
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 b3928015c..f72827332 100644 --- a/numpy/distutils/fcompiler/intel.py +++ b/numpy/distutils/fcompiler/intel.py @@ -122,7 +122,7 @@ class IntelItaniumFCompiler(IntelFCompiler): compiler_aliases = () description = 'Intel Fortran Compiler for Itanium apps' - version_match = intel_version_match('Itanium') + version_match = intel_version_match('Itanium|IA-64') #Intel(R) Fortran Itanium(R) Compiler for Itanium(R)-based applications #Version 9.1 Build 20060928 Package ID: l_fc_c_9.1.039 |