MCPcopy Index your code
hub / github.com/python/cpython / _find_build_tool

Function _find_build_tool

Lib/_osx_support.py:78–83  ·  view source on GitHub ↗

Find a build tool on current path or using xcrun

(toolname)

Source from the content-addressed store, hash-verified

76
77
78def _find_build_tool(toolname):
79 """Find a build tool on current path or using xcrun"""
80 return (_find_executable(toolname)
81 or _read_output("/usr/bin/xcrun -find %s" % (toolname,))
82 or ''
83 )
84
85_SYSTEM_VERSION = None
86

Callers 1

Calls 2

_find_executableFunction · 0.85
_read_outputFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…