MCPcopy Index your code
hub / github.com/RustPython/RustPython / _find_build_tool

Function _find_build_tool

Lib/_osx_support.py:77–82  ·  view source on GitHub ↗

Find a build tool on current path or using xcrun

(toolname)

Source from the content-addressed store, hash-verified

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

Callers 1

Calls 2

_find_executableFunction · 0.85
_read_outputFunction · 0.85

Tested by

no test coverage detected