Qt does not work since Xcode 8

2019-03-22 19:18发布

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)

标签: qt xcode8
4条回答
疯言疯语
2楼-- · 2019-03-22 19:41

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

查看更多
Root(大扎)
3楼-- · 2019-03-22 19:46

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.

查看更多
祖国的老花朵
4楼-- · 2019-03-22 19:59

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

查看更多
贼婆χ
5楼-- · 2019-03-22 20:02

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")))
查看更多
登录 后发表回答