| 175 | |
| 176 | |
| 177 | class IntelItaniumVisualFCompiler(IntelVisualFCompiler): |
| 178 | compiler_type = 'intelev' |
| 179 | description = 'Intel Visual Fortran Compiler for Itanium apps' |
| 180 | |
| 181 | version_match = intel_version_match('Itanium') |
| 182 | |
| 183 | possible_executables = ['efl'] # XXX this is a wild guess |
| 184 | ar_exe = IntelVisualFCompiler.ar_exe |
| 185 | |
| 186 | executables = { |
| 187 | 'version_cmd' : None, |
| 188 | 'compiler_f77' : [None, "-FI", "-w90", "-w95"], |
| 189 | 'compiler_fix' : [None, "-FI", "-4L72", "-w"], |
| 190 | 'compiler_f90' : [None], |
| 191 | 'linker_so' : ['<F90>', "-shared"], |
| 192 | 'archiver' : [ar_exe, "/verbose", "/OUT:"], |
| 193 | 'ranlib' : None |
| 194 | } |
| 195 | |
| 196 | |
| 197 | class IntelEM64VisualFCompiler(IntelVisualFCompiler): |
nothing calls this directly
no test coverage detected