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

Class IntelItaniumVisualFCompiler

numpy/distutils/fcompiler/intel.py:177–194  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

175
176
177class 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
197class IntelEM64VisualFCompiler(IntelVisualFCompiler):

Callers

nothing calls this directly

Calls 1

intel_version_matchFunction · 0.85

Tested by

no test coverage detected