| 82 | |
| 83 | |
| 84 | class IntelItaniumFCompiler(IntelFCompiler): |
| 85 | compiler_type = 'intele' |
| 86 | compiler_aliases = () |
| 87 | description = 'Intel Fortran Compiler for Itanium apps' |
| 88 | |
| 89 | version_match = intel_version_match('Itanium|IA-64') |
| 90 | |
| 91 | possible_executables = ['ifort', 'efort', 'efc'] |
| 92 | |
| 93 | executables = { |
| 94 | 'version_cmd' : None, |
| 95 | 'compiler_f77' : [None, "-FI", "-w90", "-w95"], |
| 96 | 'compiler_fix' : [None, "-FI"], |
| 97 | 'compiler_f90' : [None], |
| 98 | 'linker_so' : ['<F90>', "-shared"], |
| 99 | 'archiver' : ["ar", "-cr"], |
| 100 | 'ranlib' : ["ranlib"] |
| 101 | } |
| 102 | |
| 103 | |
| 104 | class IntelEM64TFCompiler(IntelFCompiler): |
nothing calls this directly
no test coverage detected