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

Method get_library_dirs

numpy/distutils/fcompiler/pg.py:94–100  ·  view source on GitHub ↗

List of compiler library directories.

(self)

Source from the content-addressed store, hash-verified

92
93 @functools.lru_cache(maxsize=128)
94 def get_library_dirs(self):
95 """List of compiler library directories."""
96 opt = FCompiler.get_library_dirs(self)
97 flang_dir = dirname(self.executables['compiler_f77'][0])
98 opt.append(normpath(join(flang_dir, '..', 'lib')))
99
100 return opt
101
102 def get_flags(self):
103 return []

Callers

nothing calls this directly

Calls 2

normpathFunction · 0.85
joinFunction · 0.85

Tested by

no test coverage detected