summaryrefslogtreecommitdiff
path: root/numpy/distutils/fcompiler/intel.py
diff options
context:
space:
mode:
authorcookedm <cookedm@localhost>2007-07-06 15:05:09 +0000
committercookedm <cookedm@localhost>2007-07-06 15:05:09 +0000
commit3bbfa8af671843476dacf27f5f42006d9fd462fa (patch)
tree3b64fef993dbb0664b859e911ae2495c9029921b /numpy/distutils/fcompiler/intel.py
parent2b7dcc22d4385e15ccb651c06fa62eece0bb45e0 (diff)
downloadnumpy-3bbfa8af671843476dacf27f5f42006d9fd462fa.tar.gz
Add support for aliases for Fortran compilers.
- 'g77' for gnu, 'gfortran' for gnu95, 'ifort' for intel
Diffstat (limited to 'numpy/distutils/fcompiler/intel.py')
-rw-r--r--numpy/distutils/fcompiler/intel.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/numpy/distutils/fcompiler/intel.py b/numpy/distutils/fcompiler/intel.py
index f03a8b014..d64c6b5ae 100644
--- a/numpy/distutils/fcompiler/intel.py
+++ b/numpy/distutils/fcompiler/intel.py
@@ -24,6 +24,7 @@ class BaseIntelFCompiler(FCompiler):
class IntelFCompiler(BaseIntelFCompiler):
compiler_type = 'intel'
+ compiler_aliases = ('ifort',)
description = 'Intel Fortran Compiler for 32-bit apps'
version_match = intel_version_match('32-bit|IA-32')
@@ -102,6 +103,7 @@ class IntelFCompiler(BaseIntelFCompiler):
class IntelItaniumFCompiler(IntelFCompiler):
compiler_type = 'intele'
+ compiler_aliases = ()
description = 'Intel Fortran Compiler for Itanium apps'
version_match = intel_version_match('Itanium')
@@ -125,6 +127,7 @@ class IntelItaniumFCompiler(IntelFCompiler):
class IntelEM64TFCompiler(IntelFCompiler):
compiler_type = 'intelem'
+ compiler_aliases = ()
description = 'Intel Fortran Compiler for EM64T-based apps'
version_match = intel_version_match('EM64T-based')