I am reusing a legacy C library in an iOS app and in an Android app. I want to customize some macro definitions (e.g. for logging). Are there standard defines to check for (using #ifdef) whether the code is being compiled for iOS or Android/NDK?

link|improve this question

80% accept rate
3  
Please don't use #ifdef for this. Write portable code and put platform-specific issues in per-platform modules with a common interface. – larsmans Dec 3 '10 at 13:17
Put in the different module, compile each using different include path – qrtt1 Dec 3 '10 at 14:25
2  
Generally, but one must balance the magnitude of the difference with the desirability of keeping functionality organized. Over use of abstraction can just as easily make code unreadable as under use. If I had a large block of code that was identical except for one inherited linux-vs-bsd difference in a unix system call, I'd probably #ifdef it with a comment right there, rather than invent a new personal concept of portable unix and bury the implementation in inline functions pulled from some header file. – Chris Stratton Dec 3 '10 at 16:02
feedback

2 Answers

up vote 8 down vote accepted

__ANDROID__ or ANDROID for Android (compilation with the NDK) and __APPLE__ on Apple platforms (iOS or OSX)

link|improve this answer
It is ANDROID without underscores. Thank you. – Miriam Dec 3 '10 at 14:12
1  
No, it is __ANDROID__ with underscores. Quoting David Turner: “I would recommend defining __ANDROID__ explicitely for now, it should be the only thing that NDK users should be testing again”. – Sam Hocevar Sep 18 '11 at 20:21
feedback

you should consider creating two separate projects for those platforms with separate output/bin directories but shared source code. Then you just set some define in project properties for android and ios so you can recognize it when compiling

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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