(_cache=None)
| 4 | #XXX: Linker flags |
| 5 | |
| 6 | def show_fortran_compilers(_cache=None): |
| 7 | # Using cache to prevent infinite recursion. |
| 8 | if _cache: |
| 9 | return |
| 10 | elif _cache is None: |
| 11 | _cache = [] |
| 12 | _cache.append(1) |
| 13 | from numpy.distutils.fcompiler import show_fcompilers |
| 14 | import distutils.core |
| 15 | dist = distutils.core._setup_distribution |
| 16 | show_fcompilers(dist) |
| 17 | |
| 18 | class config_fc(Command): |
| 19 | """ Distutils command to hold user specified options |
nothing calls this directly
no test coverage detected