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

Method get_library_dirs

numpy/distutils/fcompiler/arm.py:39–45  ·  view source on GitHub ↗

List of compiler library directories.

(self)

Source from the content-addressed store, hash-verified

37
38 @functools.lru_cache(maxsize=128)
39 def get_library_dirs(self):
40 """List of compiler library directories."""
41 opt = FCompiler.get_library_dirs(self)
42 flang_dir = dirname(self.executables['compiler_f77'][0])
43 opt.append(normpath(join(flang_dir, '..', 'lib')))
44
45 return opt
46
47 def get_flags(self):
48 return []

Callers

nothing calls this directly

Calls 2

normpathFunction · 0.85
joinFunction · 0.85

Tested by

no test coverage detected