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

Function show_fortran_compilers

numpy/distutils/command/config_compiler.py:6–16  ·  view source on GitHub ↗
(_cache=None)

Source from the content-addressed store, hash-verified

4#XXX: Linker flags
5
6def 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
18class config_fc(Command):
19 """ Distutils command to hold user specified options

Callers

nothing calls this directly

Calls 1

show_fcompilersFunction · 0.90

Tested by

no test coverage detected