4

I am trying to submit a build log to Apple to diagnose a problem, but can't find it! Anyone done this before?

JohnRobertPett
  • 1,133
  • 4
  • 21
  • 36

2 Answers2

2

Follow the steps as per the this link

You may not get "Open this latest results as transcript text file" in Xcode 4.6.3 - You may have to use "Copy transcripts for shown results(....) as text" and further open a text edit, paste, save & send it to apple.

Update:

Step-1 (click on the show log navigator on left navigator): enter image description here

Step-2(Select the build) enter image description here

Step-3 (Right click on the row)enter image description here

Community
  • 1
  • 1
thatzprem
  • 4,697
  • 1
  • 33
  • 41
2

An alternative way, which can be useful if your build log is huge and Xcode has problems copying it to the clipboard (I've had one case where the log was 290 MB, don't ask why :) is to build the target from the console with xcodebuild and simply redirect the standard and error outputs into a text file, just like this:

xcodebuild -project yourproject.xcodeproj -scheme YourBuildScheme -arch arm64 -sdk iphoneos > build-log.txt 2>&1
Oscar Hierro
  • 1,117
  • 1
  • 10
  • 15
  • is it possible to export messages from the navigator? Build time interests (in case of successful and failed build). – flyer2001 Jan 15 '21 at 19:37