Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm writing a cross-platform code, which should compile at linux, windows, mac os. On windows, I must support visual studio and mingw.

There are some pieces of platform-specific code, which I should place in #ifdef .. #endif enviroment. For example, here I placed win32 specific code:

#ifdef WIN32
#include <windows.h>
#endif

But how do I recognize linux and mac os OS? What are defines names (or etc) I shold use?

share|improve this question

4 Answers

up vote 27 down vote accepted

For Mac OS:

#ifdef __APPLE__

For MingW on Windows:

#ifdef __MINGW32__

For GCC on Linux:

#ifdef __GNUC__

For other Windows compilers, check this thread and this for several other compilers and architectures.

share|improve this answer
Yeah, thank You. This is exactly I need. – Arenim Jan 5 '11 at 15:40
1  
Does APPLE distinguish between OSX and iOS? – gman May 21 '11 at 2:50
3  
APPLE is set for both OS X and iOS. You can #include <TargetConditionals.h> inside #ifdef APPLE, which then gives you a TARGET_OS_IPHONE #define. – Ted Mielczarek Aug 18 '11 at 11:51
7  
__GNUC__ is not Linux-specific, if you really want to detect systems running the Linux kernel, use __linux__ – Hans-Christoph Steiner Jul 31 '12 at 15:18

See: http://predef.sourceforge.net/index.php

This project provides a reasonably comprehensive listing of pre-defined #defines for many operating systems, compilers, language and platform standards, and standard libraries.

share|improve this answer

Here's what I use:

#ifdef _WIN32 // note the underscore: without it, it's not msdn official!
    // Windows (x64 and x86)
#elif __unix__ // all unices
    // Unix
#elif __posix__
    // POSIX
#elif __linux__
    // linux
#elif __APPLE__
    // Mac OS, not sure if this is covered by __posix__ and/or __unix__ though...
#endif
share|improve this answer
3  
use __linux __ instead, linux is not defined when compiling with GCC with GNU extensions disabled (ie -std=c++0x) – Erbureth Mar 1 '12 at 11:21
1  
@Erbureth Fixed, but one should really use predef.sourceforge.net/index.php as in the highest rated answer. – rubenvb Mar 1 '12 at 13:07
@rubenvb: indeed. And it got too few votes still, I think :) ... I've turned to their site so many times. – 0xC0000022L Apr 5 '12 at 0:42

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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