Xcode / Cocoa : What are the differences between debug and release builds? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T19:57:03Z http://stackoverflow.com/feeds/question/761628 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/761628/xcode-cocoa-what-are-the-differences-between-debug-and-release-builds 1 Xcode / Cocoa : What are the differences between debug and release builds? Holli 2009-04-17T18:26:55Z 2009-04-18T16:21:21Z <p>What are the differences between debug and release builds for a Cocoa application? I know the debug version contains additional information for debugging but what else is different?</p> http://stackoverflow.com/questions/761628/xcode-cocoa-what-are-the-differences-between-debug-and-release-builds/761676#761676 6 Answer by Adam Rosenfield for Xcode / Cocoa : What are the differences between debug and release builds? Adam Rosenfield 2009-04-17T18:38:47Z 2009-04-17T18:38:47Z <p>Debug builds will contain debugging symbols which can be used by a debugger. Release builds often do not contain debugging symbols, so if you get a crash dump, all you'll get are a bunch of hexadecimal addresses instead of useful symbol names.</p> <p>Debug builds are not compiled with optimization (<code>-O0</code> with gcc), whereas release builds are compiled with optimization (typically <code>-O2</code> or <code>-O3</code>). Optimization makes debugging much, much harder. If you attempt to debug a release application, the debugger will get very confused, since assembly statements no longer match up with HLL statements, statements get reordered, functions get inlined, loops get unrolled, etc.</p> <p>Debug and release builds also defined different preprocessor symbols, and some code is conditionally compiled based on those (for example, array bounds checks, assertions, etc.), although that is highly application-dependent. A typical example would be to <code>#define NDEBUG</code> for release mode, which causes assertions to be removed.</p> http://stackoverflow.com/questions/761628/xcode-cocoa-what-are-the-differences-between-debug-and-release-builds/763711#763711 0 Answer by cocoafan for Xcode / Cocoa : What are the differences between debug and release builds? cocoafan 2009-04-18T16:21:21Z 2009-04-18T16:21:21Z <p>In Tiger, Debug builds are "zero linked". This is it is optimized for you environment only and is not really a complete build. </p>