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)
Asked
Active
Viewed 97 times
1 Answers
0
$ xcodebuild -project myProj.xcodeproj -target "myTarg" -showBuildSettings

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