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

时间:2024-01-10 21:13:08

出现错误: Xcode not set up properly. You may need to confirm the license agreement by running /

解决办法如下:

Xcode 8版本以上的

1: vi打开文件

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

  (具体的地址需要根据自己的安装路径找)

2: 找到下列内容

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

  替换为以下:

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

Xcode 8版本以下的

1: 终端运行以下命令

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

2: 终端运行以下命令

  xcodebuild -license