I'm writing some semi-portable code and want to be able to detect when I'm compiling for iPhone. So I want something like #ifdef IPHONE_SDK....

Presumably Xcode defines something, but I can't see anything under project properties, and Google isn't much help.

link|improve this question

71% accept rate
feedback

2 Answers

It's in the SDK docs under "Compiling source code conditionally"

The relevant definitions are TARGET_OS_IPHONE and TARGET_IPHONE_SIMULATOR, which will be defined provided that you

#include "TargetConditionals.h"

Since that won't exist on non apple platforms, you can wrap your include like this

#ifdef __APPLE__
   #include "TargetConditionals.h"
#endif

before including that file

So, for example, if you want to check that you are running on device, you should do

#if !(TARGET_IPHONE_SIMULATOR)
link|improve this answer
including target conditionals is exactly the right thing, then use #ifdef TARGET_OS_IPHONE – kritzikratzi Feb 25 '11 at 19:07
1  
@kritzikratzi: #ifdef is wrong; you must use #if. (The symbol is normally defined as 0 when not on the simulator; #ifdef will still be true.) – Andrew Mar 20 at 14:46
feedback

To look at all the defined macros, add this to the "Other C Flags" of your build config:

-g3 -save-temps -dD

You will get some build errors, but the compiler will dump all the defines into .mi files in your project's root directory. You can use grep to look at them, for example:

grep define main.mi

When you're done, don't forget to remove these options from the build setting.

link|improve this answer
Thanks, this was useful – Airsource Ltd Oct 8 '08 at 9:27
Awesome! Thanks for that. – David Sykes Dec 2 '08 at 15:53
1  
note that this doesn't work when using the LLVM compiler – Steve Moser Apr 5 at 15:48
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.