开发者

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

开发者 https://www.devze.com 2023-01-06 22:22 出处:网络
So I can write开发者_开发技巧 code like this: #ifdef [whatever] // do stuff that will never show up in the production version

So I can write开发者_开发技巧 code like this:

#ifdef [whatever]
   // do stuff that will never show up in the production version
#endif


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.


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
0

精彩评论

暂无评论...
验证码 换一张
取 消