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

Class IntelItaniumFCompiler

numpy/distutils/fcompiler/intel.py:84–101  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

82
83
84class 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
104class IntelEM64TFCompiler(IntelFCompiler):

Callers

nothing calls this directly

Calls 1

intel_version_matchFunction · 0.85

Tested by

no test coverage detected