Hi Chunk,
Chunk 1978 wrote:
how can i maintain warnings in xcode? they disappear if i ignore them and rebuild, but i'd like them to always appear if they haven't been addressed.
I'm not using XCode, however it sounds likely that the object files are just not rebuilt? You say it happens at every build except the first time? The compiler will only rebuild objects that are not up- to-date, so you will see only the warnings for those. Are you sure you are using "rebuild" and not "build"? Try a "clean" first (or remove the output manually), see if that helps. If this is indeed the problem, then there is no other solution. You have to compile all sources in order to see all warnings, but that means you have to wait longer (because compiling is slow). My suggestion is: create a logfile for the first build, then later fix the warnings from the logfile. Cheers, Mario _______________________________________________ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Contact the moderators at cocoa-dev-admins(at)lists.apple.com Help/Unsubscribe/Update your Subscription: http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com This email sent to arch...@mail-archive.com