如何从XCode导出构建日志?

时间:2013-09-13 09:59:51

标签: xcode

我正在尝试向Apple提交构建日志以诊断问题,但无法找到它!有人这么做过吗?

2 个答案:

答案 0 :(得分:2)

按照此link

按照步骤操作

您可能无法在Xcode 4.6.3中获得“Open this latest results as transcript text file” - 您可能必须使用“Copy transcripts for shown results(....) as text”并进一步打开文本编辑,粘贴,保存和播放把它发给苹果。

更新:

Step-1(点击左侧导航器上的show log导航器): enter image description here

第2步(选择构建)enter image description here

第3步(右键点击该行)enter image description here

答案 1 :(得分:1)

另一种方法,如果您的构建日志很大并且Xcode在将其复制到剪贴板时遇到问题,这可能很有用(我有一个案例,其中日志是290 MB,不要问为什么: )是使用xcodebuild从控制台构建目标,只需将标准和错误输出重定向到文本文件,就像这样:

xcodebuild -project yourproject.xcodeproj -scheme YourBuildScheme -arch arm64 -sdk iphoneos > build-log.txt 2>&1