访问 Xcode app bundle(xcrun) 中的任何命令行工具
xcrun
使用系统默认的 Xcode 版本(通过 xcode-select
设置)从 Xcode 应用程序包中定位和执行命令行工具,例如 llvm-cov。
# Generate code coverage reports via llvm-cov
# /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
xcrun llvm-cov [parameters]
# Execute xcodebuild
# /Applications/Xcode.app/Contents/Developer/usr/bin
xcrun xcodebuild [parameters]
# Use Xcode's version of git, e.g., if you have installed a newer version
# /Applications/Xcode.app/Contents/Developer/usr/bin
xcrun git [parameters]