Is it possible to direct output from build scripts the Xcode build log?
Is there a way to direct output from Xcode build scripts to the build log window in Xcode?
I've see it claimed that that 'echo' will do thi开发者_Go百科s, but my results do not appear in Xcode, but in system.log instead.
Have you tried to pipe your output with "open -f" ? Just like this:
myscrpit.sh 2>&1 | open -f
It will bring up textedit with your log.
精彩评论