Is there a simple preprocessor macro that is defined for a 64-bit build? I thought _WIN64 might have been it, but even when I build a 32-bit target, the parts enclosed in a #ifdef _WIN64 ... #endif are compiled in, and this is causing problems. It's Friday and I can't think straight, but I'm sure I'm overlooking something very simple here. Maybe even something involving sizeof.
|
|
|
||
|
|
|
|
I have always used _WIN64 to check if it is a 64 bit build. N.B. _WIN32 is also always (automatically) defined by MSVC in 64 bit builds, so check for _WIN64 before you check for _WIN32:
|
||
|
|
|
|
The Visual C++ compiler defines the following macros:
|
||||||||
|
|
|
It sounds like your problem might be related to a header or project setting improperly defining There's a subtle difference between
So if you're only including standard headers and don't take other measures to define it, There's a similar story for Microsoft's compilers and Comeau do not. Another bit of (hopefully) well known trivia is that |
||||
|
|
|
Check your project's build properties, particularly the preprocessor section. Are you defining |
||||
|
