xcode-select: error: tool 'xcodebuild' requires Xcode错误解决方法

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/u010962810/article/details/21613745

因为机子里有两个Xcode,所以分别重命名了,但是在运行一个MakeFile时却报了以下错误:

xcodebuild -target "GHUnitIOS (Device)" -configuration Release SYMROOT=build
xcode-select: error: tool 'xcodebuild' requires Xcode, but active developer directory '/Library/Developer/CommandLineTools' is a command line tools instance
make: *** [default] Error 1

原因是Xcode重命名后,xcodebuild找不到原来的Xcode了。
解决方法:在终端输入命令

xcode-select -switch 新的xcode路径

例如:

$ sudo xcode-select --switch /Applications/Xcode\ 5.1.app/Contents/Developer/

作者:Jymn_Chen
来源:CSDN
原文:https://blog.csdn.net/jymn_chen/article/details/21613745
版权声明:本文为博主原创文章,转载请附上博文链接!

你可能感兴趣的:(xcode-select: error: tool 'xcodebuild' requires Xcode错误解决方法)