diff options
Diffstat (limited to 'numpy/distutils/fcompiler/lahey.py')
-rw-r--r-- | numpy/distutils/fcompiler/lahey.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/numpy/distutils/fcompiler/lahey.py b/numpy/distutils/fcompiler/lahey.py index eaa577b62..2fef4a212 100644 --- a/numpy/distutils/fcompiler/lahey.py +++ b/numpy/distutils/fcompiler/lahey.py @@ -4,13 +4,16 @@ import sys from numpy.distutils.cpuinfo import cpu from numpy.distutils.fcompiler import FCompiler +compilers = ['LaheyFCompiler'] + class LaheyFCompiler(FCompiler): compiler_type = 'lahey' + description = 'Lahey/Fujitsu Fortran 95 Compiler' version_pattern = r'Lahey/Fujitsu Fortran 95 Compiler Release (?P<version>[^\s*]*)' executables = { - 'version_cmd' : ["lf95", "--version"], + 'version_cmd' : ["<F90>", "--version"], 'compiler_f77' : ["lf95", "--fix"], 'compiler_fix' : ["lf95", "--fix"], 'compiler_f90' : ["lf95"], |