还在苦苦敲代码开发APP?你out啦! 试试积木搭建APP吧~

错误解决:Xcode not set up properly. You may need to confirm the license agreement by running /usr/bin/xcodebuild

来源:清泛编译     2016-12-06 22:52:53    人气:     我有话说( 0 人参与)

错误描述及解决方法1、:-1: error: Xcode not set up properly. You may need to confirm the license agreement by runni...

错误描述及解决方法

1、:-1: error: Xcode not set up properly. You may need to confirm the license agreement by running /usr/bin/xcodebuild.

1

2

Xcode -> Preferences -> Locations - > Command Line Tools

#设置好xcode的安装位置

xcodecommandline

1

sudo -i xcode-select -switch /Applications/Xcode6-Beta6.app/Contents/Developer

根据具体路径:
(sudo xcode-select -switch /Applications/Xcode.app/Contents/Developer)




升级xcode 后 Qt 出问题了,google 找到了解决方法。

http://stackoverflow.com/questions/33728905/qt-creator-project-error-xcode-not-set-up-properly-you-may-need-to-confirm-t

 

~> Xcode 8

This problem occurs when command line tools are installed after Xcode is installed. What happens is the Xcode-select developer directory gets pointed to /Library/Developer/CommandLineTools.

Step 1:

Point Xcode-select to the correct Xcode Developer directory with the command:

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

Step 2:

Confirm the license agreement with the command:

xcodebuild -license

This will prompt you to read through the license agreement. 

Enter agree to accept the terms.

>= Xcode 8

Step 1:

As Bruce said, this happens when Qt tries to find xcrun when it should be looking for xcodebuild.

Open the file:

Qt_install_folder/5.7/clang_64/mkspecs/features/mac/default_pre.prf

Step 2:

Replace:

isEmpty($$list($$system("/usr/bin/xcrun -find xcrun 2>/dev/null"))))

With:

isEmpty($$list($$system("/usr/bin/xcrun -find xcodebuild 2>/dev/null")))


Xcode qt5

注:本文为本站或本站会员原创优质内容,版权属于原作者及清泛网所有,
欢迎转载,转载时须注明版权并添加来源链接,谢谢合作! (编辑:admin)
分享到: