Debug info slows compiler?
I am working on an iPhone app. I compile to two targets, Simulator-debug and Device-Release.
Compiling for simulator is horribly slow but for the device is reall开发者_StackOverflow社区y fast. The only difference I can see is debug vs release. Does debug info slow things that much?
Shouldn't make much of a difference - debug is usually faster to compile because of less optimizations.
Make sure you compare clean build times for each and use the same settings for precompiled headers etc.
精彩评论