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