码迷,mamicode.com
首页 > 系统相关 > 详细

Mac下QT错误,Xcode配置解决办法

时间:2016-12-08 15:55:28      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:lis   lin   license   clang   back   set   sem   color   install   

Project ERROR: Xcode not set up properly. You may need to confirm the license agreement by running /

 

>= Xcode 8

In Xcode 8, as Bruce said, this happens when Qt tries to find xcrun when it should be looking for xcodebuild.

Step 1:

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 8

Before 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.

Mac下QT错误,Xcode配置解决办法

标签:lis   lin   license   clang   back   set   sem   color   install   

原文地址:http://www.cnblogs.com/cotsnail/p/6145187.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!