vote up 6 vote down star
1

Is there any way to know if I'm compiling under Microsoft Visual Studio 2008 ?

flag

73% accept rate

7 Answers

vote up 10 vote down check

_MSC_VER is what you need. You can also examine visualc.hpp in any recent boost install for some usage examples.

Some values for the more recent versions of the compiler are:

MSVC++ 9.0  _MSC_VER = 1500
MSVC++ 8.0  _MSC_VER = 1400
MSVC++ 7.1  _MSC_VER = 1310
MSVC++ 7.0  _MSC_VER = 1300
MSVC++ 6.0  _MSC_VER = 1200
MSVC++ 5.0  _MSC_VER = 1100

The version number above of course refers to the major version of your Visual studio you see in the about box, not to the year in the name.

link|flag
vote up 0 vote down

This is a little old but should get you started:

//************************************************************************** // Automated platform detection //**************************************************************************

// _WIN32 is used by // Visual C++

ifdef _WIN32

define NT

endif

// Define MAC platform indicator

ifdef macintosh

define MAC

endif

// Define OSX platform indicator

ifdef APPLE

define OSX

endif

// Define WIN16 platform indicator

ifdef Windows

ifndef NT

define WIN16

endif

endif

// Define Windows CE platform indicator

ifdef WIN32_PLATFORM_HPCPRO

define WINCE

endif

if (_WIN32_WCE == 300) // for Pocket PC

define POCKETPC

define WINCE

//#if (_WIN32_WCE == 211) // for Palm-size PC 2.11 (Wyvern) //#if (_WIN32_WCE == 201) // for Palm-size PC 2.01 (Gryphon)
//#ifdef WIN32_PLATFORM_HPC2000 // for H/PC 2000 (Galileo)

endif

link|flag
vote up 2 vote down

By using Visual Studio specific macros, more info is here.

link|flag
vote up 1 vote down

By using the _MSC_VER macro.

link|flag
vote up 0 vote down

I was talking from the code's "point of view" . I would like to add a #ifdef , that would change a bit the code , if compiling under WinCE . There are a couple of methods that are different from the PC version.

link|flag
You should probably post a new question about this, because if you change your question it won't make sense. CE builds define _WIN32_WCE as the CE version, e.g. 5.0 = 500, 4.2 = 420 etc. – Mike Dimmick Sep 16 '08 at 12:59
vote up 2 vote down

_MSC_VER should be defined to a specific version number. You can either #ifdef on it, or you can use the actual define and do a runtime test. (If for some reason you wanted to run different code based on what compiler it was compiled with? Yeah, probably you were looking for the #ifdef. :))

link|flag
vote up 0 vote down

In visual studio, go to help | about and look at the version of Visual Studio that you're using to compile your app.

link|flag

Your Answer

Get an OpenID
or

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