List of compiler library directories.
(self)
| 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 [] |