前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >error: Xcode not set up properly. You ..confirm the license agreement by running /usr/bin/xcodebuild

error: Xcode not set up properly. You ..confirm the license agreement by running /usr/bin/xcodebuild

作者头像
MachineLP
发布2022-05-09 14:16:49
3080
发布2022-05-09 14:16:49
举报
文章被收录于专栏:小鹏的专栏

(1)Xcode版本在8.0以上要安装下面步骤修改。

       >= 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:

代码语言:javascript
复制
      Qt_install_folder/5.7/clang_64/mkspecs/features/mac/default_pre.prf

       Step 2:

          Replace:

代码语言:javascript
复制
     isEmpty($$list($$system("/usr/bin/xcrun -find xcrun 2>/dev/null")))

          With:

代码语言:javascript
复制
     isEmpty($$list($$system("/usr/bin/xcrun -find xcodebuild 2>/dev/null")))

(2)Xcode版本在8.0以下,按照下面的步骤修改。

      ~> 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:

代码语言:javascript
复制
       sudo xcode-select -switch /Applications/Xcode.app/Contents/Developer

         Step 2:

          Confirm the license agreement with the command:

代码语言:javascript
复制
      xcodebuild -license

          This will prompt you to read through the license agreement.

   Enter agree to accept the terms.

本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2016-11-23,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档