Plateform macro
stackoverflow How to identify platform/compiler from preprocessor macros?
A
For Mac OS:
#ifdef __APPLE__
For MingW on Windows:
#ifdef __MINGW32__
For Linux:
#ifdef __linux__
For other Windows compilers, check this thread and this for several other compilers and architectures.
sourceforge Pre-defined Compiler Macros
NOTE: 非常全面