vote up 5 vote down star
3

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.

flag

71% accept rate

2 Answers

vote up 8 vote down

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|flag
vote up 6 vote down

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|flag
Thanks, this was useful – Airsource Ltd Oct 8 '08 at 9:27
Awesome! Thanks for that. – David Sykes Dec 2 '08 at 15:53

Your Answer

Get an OpenID
or

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