Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a macro that Xcode automatically sets in debug builds?

So I can write code like this:

#ifdef [whatever]
   // do stuff that will never show up in the production version
#endif
like image 456
William Jockusch Avatar asked Feb 27 '23 16:02

William Jockusch


2 Answers

Nothing useful per default, but you can set a DEBUG macro for debug builds in the "Preprocessor Macros" of the targets build settings and then do:

#ifdef DEBUG
  // do stuff
#endif

If you want to automate that, edit the project templates in "/Developer/Library/Xcode/Project Templates":

  • Find the XCBuildConfiguration section(s) for which name = Debug;.
  • In the buildSettings add DEBUG to the list for GCC_PREPROCESSOR_DEFINITIONS if it exists
  • Otherwise add GCC_PREPROCESSOR_DEFINITIONS = (DEBUG); to the buildSettings

For per-user customizations and to avoid them being overwritten, see this question.

like image 51
Georg Fritzsche Avatar answered May 01 '23 11:05

Georg Fritzsche


If you can assume that debug builds always use gcc -O0 (this is normally the case, but there may be odd exceptions where someone has changed the optimisation level for debug builds) then you can do this:

#if __OPTIMIZE__
  // ... non-debug stuff ... 
#else
  // ... debug stuff ...
#endif
like image 32
Paul R Avatar answered May 01 '23 11:05

Paul R