Xcode / Cocoa : What are the differences between debug and release builds? - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T19:57:03Zhttp://stackoverflow.com/feeds/question/761628http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/761628/xcode-cocoa-what-are-the-differences-between-debug-and-release-builds1Xcode / Cocoa : What are the differences between debug and release builds?Holli2009-04-17T18:26:55Z2009-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#7616766Answer by Adam Rosenfield for Xcode / Cocoa : What are the differences between debug and release builds?Adam Rosenfield2009-04-17T18:38:47Z2009-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#7637110Answer by cocoafan for Xcode / Cocoa : What are the differences between debug and release builds?cocoafan2009-04-18T16:21:21Z2009-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>