4

我在从终端构建 iOS 应用程序时遇到问题。我正在关注 xcodebuild -h 帮助,但我无法让它工作......我一直在谷歌搜索我遇到的很多错误,但找不到答案......

这就是我正在做的事情:

xcodebuild -workspace AppName.xcworkspace -scheme '集成测试' -configuration 调试

我得到的错误是:

The following build commands failed:
ProcessPCH /Users/UserName/Library/Developer/Xcode/DerivedData/AppName/Build/PrecompiledHeaders/AppName-Prefix/AppName-Prefix.pch.pth AppName/AppName-Prefix.pch normal armv6 objective-c com.apple.compilers.llvm.clang.1_0.compiler
ProcessPCH /Users/UserName/Library/Developer/Xcode/DerivedData/AppName/Build/PrecompiledHeaders/AppName-Prefix/AppName-Prefix.pch.pth AppName/AppName-Prefix.pch normal armv6 objective-c com.apple.compilers.llvm.clang.1_0.compiler
(2 failures)

我找不到失败的地方,使用 xCode 我可以毫无问题地编译和运行这个应用程序......知道发生了什么吗?

谢谢!

4

1 回答 1

2

您是否尝试过使用 xcode-select 选择您的 xcode?

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

大多数情况下……</p>

您也可以尝试通过以下方式更新 xcodebuild

$sudo /usr/bin/xcode-select -switch /Applications/Xcode.app/Contents/Developer
$cd /usr/bin
$sudo rm xcodebuild
$ln -s /Applications/Xcode.app/Contents/Developer/usr/bin/xcodebuild xcodebuild
于 2012-08-22T14:05:51.617 回答