0

I would like to know if it is possible to get the current build output from Xcode during a build phase (run script). (So access the current output mid build essentially)

1 Answers1

0
$ xcodebuild -project myProj.xcodeproj -target "myTarg" -showBuildSettings

source: https://stackoverflow.com/a/12823466/1180728

Blazej SLEBODA
  • 8,936
  • 7
  • 53
  • 93
  • Yeah unfortunately the location where Xcode writes the logs isn’t written to until the build is complete. I need this info in flight as Xcodes is building. There is no reference to this location ( that I can see in the Env variables). – Matt Calliss Jun 03 '19 at 08:04