mac下使用qt编译时,报了:Could not resolve SDK Path for 'macosx'
网上找到的答案大都是这样:
----------------------------------------------------------------------------------------------
这是由于QT for Mac中qdevice.pri文件的配置问题。我现在使用的是OS X10.10,所以需要到如下路径找到qdevice.pri文件。
Macintosh HD ▸ 用户 ▸ lining ▸ Qt5.3.2_mac ▸ 5.3 ▸ clang_64 ▸ mkspecs
然后打开该文件,默认内容如下:
!host_build:QMAKE_MAC_SDK = macosx10.8
GCC_MACHINE_DUMP =x86_64-apple-darwin12.5.0
这里将10.8换成10.10即可,换完后的内容如下:
!host_build:QMAKE_MAC_SDK = macosx10.10
GCC_MACHINE_DUMP =x86_64-apple-darwin12.5.0
----------------------------------------------------------------------------------------------
但这样做后发现问题并未解决。
在AppStore中安装xcode后,再在终端中输入:
sudo xcode-select -s /Applications/Xcode.app/Contents/Developer
重启qt,问题解决!