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

Method get_libraries

numpy/distutils/fcompiler/absoft.py:91–103  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

89 return opt
90
91 def get_libraries(self):
92 opt = FCompiler.get_libraries(self)
93 if self.get_version() >= '11.0':
94 opt.extend(['af90math', 'afio', 'af77math', 'amisc'])
95 elif self.get_version() >= '10.0':
96 opt.extend(['af90math', 'afio', 'af77math', 'U77'])
97 elif self.get_version() >= '8.0':
98 opt.extend(['f90math', 'fio', 'f77math', 'U77'])
99 else:
100 opt.extend(['fio', 'f90math', 'fmath', 'U77'])
101 if os.name =='nt':
102 opt.append('COMDLG32')
103 return opt
104
105 def get_flags(self):
106 opt = FCompiler.get_flags(self)

Callers

nothing calls this directly

Calls 1

get_versionMethod · 0.45

Tested by

no test coverage detected