vote up 2 vote down star

I am writing a program that is cross platform. There are a few spots where I have to specify an operating system dependent call.

#ifdef WINDOWS
..do windows only stuff
#endif
#ifdef LINUX
..do linux only stuff    
#endif

Are there any preprocesser directives that get defined by the compiler so I don't have to explicitly define them when I use the command line compiler. ie.

cl -DWINDOWS program.cpp

or

g++ -DLINUX program.cpp

I realize I could easily write a makefile or have a shell/batch script that will do this automatically. But I would prefer to use the same ones as the compiler (if they exist) by default.

flag

See also stackoverflow.com/questions/430424/… , – therefromhere Jul 9 at 22:40
Are you going only build the target on the target, or cross compile also? – Simeon Pilgrim Jul 9 at 22:55

4 Answers

vote up 2 vote down check

I found a complete list for all g++'s on this website.

  • #define __HAVE_BUILTIN_SETJMP__ 1
  • #define __unix__ 1
  • #define unix 1
  • #define __i386__ 1
  • #define __SIZE_TYPE__ unsigned int
  • #define __ELF__ 1
  • #define __GNUC_PATCHLEVEL__ 3
  • #define __linux 1
  • #define __unix 1
  • #define __linux__ 1
  • #define __USER_LABEL_PREFIX__
  • #define linux 1
  • #define __STDC_HOSTED__ 1
  • #define __EXCEPTIONS 1
  • #define __GXX_WEAK__ 1
  • #define __WCHAR_TYPE__ long int
  • #define __gnu_linux__ 1
  • #define __WINT_TYPE__ unsigned int
  • #define __GNUC__ 3
  • #define __cplusplus 1
  • #define __DEPRECATED 1
  • #define __GNUG__ 3
  • #define __GXX_ABI_VERSION 102
  • #define i386 1
  • #define __GNUC_MINOR__ 2
  • #define __STDC__ 1
  • #define __PTRDIFF_TYPE__ int
  • #define __tune_i386__ 1
  • #define __REGISTER_PREFIX__
  • #define __NO_INLINE__ 1
  • #define _GNU_SOURCE 1
  • #define __i386 1
  • #define __VERSION__ "3.2.3 20030502 (Red Hat Linux 3.2.3-47.3)"

And Visual C++ already has Win32 defined to use for any Widnows version.

link|flag
vote up 0 vote down

Yes. I believe WIN32 is, but I'm not on a windows right now to test it :D

See: http://en.wikipedia.org/wiki/C_preprocessor (it mentions WIN32)

link|flag
It says it is defined by Win32 compilers only. Not Unix/Linux. – Lucas McCoy Jul 9 at 22:43
This doesn't seem to work using visual studios command line compiler. I checked it by saying #ifndef WIN32 #error This compiler does not define WIN32 #endif and it printed out an error – DHamrick Jul 9 at 22:53
Weird. I'm quite sure WIN32 is defined by Mingw, though. – luiscubal Jul 10 at 18:42
vote up 2 vote down

Yes, there are such pre-defined symbols but I don't recommend you use them unless you never, ever, forsee supporting more platforms, compilers or operating system versions. Here's the logic.

First, you're better off with your own minimal set of defined compilation constants for use within your code. Because you might start with things like this:

#if defined(_WIN32)
    // do windows stuff
#endif
#if defined(_linux)
    // linux stuff
#endif

Suppose you allow compilation under a new compiler for windows that doesn't define _WIN32 automatically? You can change every _WIN32 line to something like:

#if defined(_WIN32) || defined(ming)

Which is a real pain in the butt if you have more than one of those to change. You could put something like this at a high level:

#if defined(ming)
#define _WIN32
#endif

But you'll likely discover that some system or library header file freaks out because they happen to use _WIN32. Better you had abstracted it in a common header file:

#if defined(_WIN32) || defined(ming)
    #define PLAT_WINDOWS
#endif

And then simply use #if defined(PLAT_WINDOWS) where needed.

But what about that common header file? Well, when a new compiler/OS/whatever comes along you have to start tweaking it to make sure it says the right things. Pretty soon it is a comical hairball of condition that can only be understood if you know about every version of every compiler on every operating system on the planet. And gee, who doesn't but nevertheless any changes made have to be tested everywhere and that is painful.

So, better you just have some high level setting inside the makefile or even outside it that says "if you're on windows, -DPLAT_WINDOWS" and be done with it.

Of course, all this is minimized if you use the most commonly available functions and features in your code.

link|flag
vote up 1 vote down

All of these answers were very good. The solution that worked for me was the following.

#ifdef _WIN32

#endif

#ifdef linux

#endif

WIN32 was not defined by cl but _WIN32 was. linux was defined by g++.

link|flag
Glad to see you answer your problem by combining or solutions, but that doesn't solve my problem on gaining rep because you can't accept all our answers. ;-) – Lucas McCoy Jul 10 at 2:50
_WIN32 may be defined in Visual C++, but I'm quite sure it's defined in Mingw. – luiscubal Jul 10 at 18:44

Your Answer

Get an OpenID
or

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