0

编辑:Apple 的最新发布说明似乎表明构建系统发生了巨大变化。目前,Intune 的包管理器最近没有更新,所以我不希望在更新之前除了降级之外的修复。

我刚刚更新了 XCode 和 OSX 并像往常一样运行了 Intune MAM 打包程序,但现在我没有成功,而是得到了这个:

Version of MACOSX is 10.13.5
XCode prerequisite version check failed: failure in executing the xcodebuild command.
Missing prerequisite.
Cause of the error to be provided for investigation:Error Domain=IntuneAppPackager Code=22 "XCode version 5 or greater is required to run this tool." UserInfo={NSLocalizedDescription=XCode version 5 or greater is required to run this tool.}

我已经不得不重新启用证书以匹配配置文件,但这似乎无关紧要。我通过默认设置安装了最新的 XCode 和构建工具。我用谷歌搜索了这个错误的不同部分,但什么也没回来。这可能是 InTune 的 mam 打包器,但错误本身在说 XCode 构建工具时是相对具体的。

4

2 回答 2

3

在您的终端中尝试以下代码:

xcode-select -p, then check if that path is correct path of your Xcode.

如果这不起作用,请尝试以下代码:

sudo xcode-select --switch /correct path of the xcode app.

例如:

sudo xcode-select --switch /Applications/Xcode_7.3.1.app/Contents/Developer

这就是我所做的,并且有效!

于 2018-09-14T14:02:33.567 回答
1

我通过 App Store 安装了 Xcode,并在切换到新版本的 Intune MAM Packager 后遇到了同样的错误。

sudo xcode-select --switch /Applications/Xcode_7.3.1.app/Contents/Developer

这对我有用

于 2021-02-12T17:29:08.097 回答