diff options
author | cookedm <cookedm@localhost> | 2007-05-25 11:41:16 +0000 |
---|---|---|
committer | cookedm <cookedm@localhost> | 2007-05-25 11:41:16 +0000 |
commit | 5267b3e16654ef326f525fdb9a1287a88396c616 (patch) | |
tree | 9e7137815415c08577f5451266cdc70f7caa3ea7 /numpy/distutils/fcompiler/mips.py | |
parent | d11dbc78c0df5055a6ed57285775cc18dbe1721a (diff) | |
download | numpy-5267b3e16654ef326f525fdb9a1287a88396c616.tar.gz |
merge from distutils-revamp branch (step 2)
- fcompiler changes. All flags, executables, etc., should be overridable
by the user with config_fc (either command line or setup.cfg) or by
environment variables
Diffstat (limited to 'numpy/distutils/fcompiler/mips.py')
-rw-r--r-- | numpy/distutils/fcompiler/mips.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/numpy/distutils/fcompiler/mips.py b/numpy/distutils/fcompiler/mips.py index 915cbead9..4079c6e59 100644 --- a/numpy/distutils/fcompiler/mips.py +++ b/numpy/distutils/fcompiler/mips.py @@ -4,13 +4,16 @@ import sys from numpy.distutils.cpuinfo import cpu from numpy.distutils.fcompiler import FCompiler -class MipsFCompiler(FCompiler): +compilers = ['MIPSFCompiler'] + +class MIPSFCompiler(FCompiler): compiler_type = 'mips' + description = 'MIPSpro Fortran Compiler' version_pattern = r'MIPSpro Compilers: Version (?P<version>[^\s*,]*)' executables = { - 'version_cmd' : ["f90", "-version"], + 'version_cmd' : ["<F90>", "-version"], 'compiler_f77' : ["f77", "-f77"], 'compiler_fix' : ["f90", "-fixedform"], 'compiler_f90' : ["f90"], |