diff options
author | Pearu Peterson <pearu.peterson@gmail.com> | 2004-02-16 08:51:41 +0000 |
---|---|---|
committer | Pearu Peterson <pearu.peterson@gmail.com> | 2004-02-16 08:51:41 +0000 |
commit | 71e73fe209073239bb289e69586dc12ecf8b2db6 (patch) | |
tree | 78586bb4e0bfc36768fa08009f8984053f1dfca2 /scipy_distutils/fcompiler.py | |
parent | c22fc07b8971ccd5e0442a897f9fe8e03825de90 (diff) | |
download | numpy-71e73fe209073239bb289e69586dc12ecf8b2db6.tar.gz |
Initial support for IBM XL Fortran Compiler
Diffstat (limited to 'scipy_distutils/fcompiler.py')
-rw-r--r-- | scipy_distutils/fcompiler.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scipy_distutils/fcompiler.py b/scipy_distutils/fcompiler.py index 7ef04a0c5..51eb75a33 100644 --- a/scipy_distutils/fcompiler.py +++ b/scipy_distutils/fcompiler.py @@ -632,6 +632,8 @@ fcompiler_class = {'gnu':('gnufcompiler','GnuFCompiler', "HP Fortran 90 Compiler"), 'lahey':('laheyfcompiler','LaheyFCompiler', "Lahey/Fujitsu Fortran 95 Compiler"), + 'ibm':('ibmfcompiler','IbmFCompiler', + "IBM XL Fortran Compiler"), 'f':('fcompiler','FFCompiler', "Fortran Company/NAG F Compiler"), } @@ -642,6 +644,7 @@ _default_compilers = ( ('cygwin.*',('gnu','intelv','absoft','compaqv','intelitanium')), ('linux.*',('gnu','intel','lahey','pg','absoft','nag','vast','compaq', 'intelitanium')), + ('darwin.*',('gnu','nag','ibm')), ('sunos.*',('forte','gnu','sun')), ('irix',('mips','gnu')), # OS mappings |