diff options
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"], |