MCPcopy Create free account
hub / github.com/numpy/numpy / IntelEM64TFCompiler

Class IntelEM64TFCompiler

numpy/distutils/fcompiler/intel.py:104–121  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

102
103
104class 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?

Callers

nothing calls this directly

Calls 1

intel_version_matchFunction · 0.85

Tested by

no test coverage detected