Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Qt does not work since Xcode 8

Tags:

xcode8

qt

Since Xcode 8 installation, i got this error when creating Qt Console Project:

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

I have re installed Qt and Qt Creator. I have read a lot of similar post, run xcode-select and stuff. This is crazy, there is nothing to do, still same error.

I am wondering what Qt exactly do with Xcode ?

(this is Qt 5.7)

like image 549
Bob5421 Avatar asked Sep 17 '16 07:09

Bob5421


Video Answer


4 Answers

For the moment, untill Qt updates this is a fix:

Step 1:

Open the file:

<Qt installation 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")))
like image 125
Luca Angioloni Avatar answered Oct 22 '22 21:10

Luca Angioloni


To avoid error 'Current iPhone SDK version (10.0) is too old. Please upgrade Xcode.' when building for iOS you need beside changing 'xcrun' to 'xcodebuild' (as says Luca Angioloni) also change minimum sdk version to "10.0". Open file:

<Qt installation folder>/5.7/ios/mkspecs/macx-ios-clang/features/sdk.prf

And replace:

lessThan(QMAKE_MAC_SDK_VERSION, "8.0"):

With:

lessThan(QMAKE_MAC_SDK_VERSION, "10.0"):

UPD: Qt 5.7.1 have already worked with xcode 8 well, just update your Qt to this (or higher) version

like image 22
Yevgeniy Logachev Avatar answered Oct 22 '22 22:10

Yevgeniy Logachev


Just to complete the answer of Yevgeniy Logachev, you have to use the solution of Luca but for the iOS path, if you want to compile for iOS devices :

<Qt installation folder>/5.7/ios/mkspecs/features/mac/default_pre.prf

like image 8
doudouremi Avatar answered Oct 22 '22 21:10

doudouremi


The answer from Luca is correct, this is a Qt bug and more details can be found here:

https://bugreports.qt.io/browse/QTBUG-55649

Including progress on the release/fix.

like image 2
asj Avatar answered Oct 22 '22 21:10

asj