| 102 | |
| 103 | |
| 104 | class IntelEM64TFCompiler(IntelFCompiler): |
| 105 | compiler_type = 'intelem' |
| 106 | compiler_aliases = () |
| 107 | description = 'Intel Fortran Compiler for 64-bit apps' |
| 108 | |
| 109 | version_match = intel_version_match('EM64T-based|Intel\\(R\\) 64|64|IA-64|64-bit') |
| 110 | |
| 111 | possible_executables = ['ifort', 'efort', 'efc'] |
| 112 | |
| 113 | executables = { |
| 114 | 'version_cmd' : None, |
| 115 | 'compiler_f77' : [None, "-FI"], |
| 116 | 'compiler_fix' : [None, "-FI"], |
| 117 | 'compiler_f90' : [None], |
| 118 | 'linker_so' : ['<F90>', "-shared"], |
| 119 | 'archiver' : ["ar", "-cr"], |
| 120 | 'ranlib' : ["ranlib"] |
| 121 | } |
| 122 | |
| 123 | # Is there no difference in the version string between the above compilers |
| 124 | # and the Visual compilers? |
nothing calls this directly
no test coverage detected