Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

xcodebuild doesn't output warnings & errors?

Tags:

xcode

ios

iphone

I'm running xcodebuild, but the command line isn't outputting source code warnings and errors. It just says CompileC failed. How do I get xcodebuild to output source code level warnings and errors?

like image 236
leftspin Avatar asked Oct 13 '11 21:10

leftspin


1 Answers

The problem is often that an error has occurred higher up the stack, but then the message is completely missing by the time that Xcode prints out the error message. Try running:

xcodebuild | grep error

and it often gives more helpful advice than before.

like image 61
AlBlue Avatar answered Nov 01 '22 21:11

AlBlue