准备Handbrake的环境时,
./configure --launch-jobs=$(sysctl -n hw.ncpu) --launch
运行时,出现了以下提示:
xcode-select: error: tool'xcodebuild'requires Xcode, but active developer directory'/Library/Developer/CommandLineTools'is acommandline tools instance
这种情况是xcodebuild的路径不正确。
localhost:HandBrakePrivate$ xcode-select --print-path/Library/Developer/CommandLineToolslocalhost:DeveloperPrivate$ xcodebuild -showsdksxcode-select: error: tool'xcodebuild'requires Xcode, but active developer directory'/Library/Developer/CommandLineTools'is a command line tools instance
将路径切换到Xcode的目录下:
sudo xcode-select --switch/Applications/Xcode.app/Contents/Developer/
网友评论