From: Martin v. Löwis Date: Tue, 27 Jul 2004 14:16:14 +0000 (+0000) Subject: Properly check for Win64 compilers. X-Git-Tag: v2.4a2~129 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=512efb464b8c840f03f80b5ed8da9672b7b3e246;p=thirdparty%2FPython%2Fcpython.git Properly check for Win64 compilers. --- diff --git a/PC/pyconfig.h b/PC/pyconfig.h index 79f5ddd52f9c..557342f876e4 100644 --- a/PC/pyconfig.h +++ b/PC/pyconfig.h @@ -98,6 +98,10 @@ MS_CORE_DLL. #ifdef MS_WIN64 #ifdef _M_IX86 #define COMPILER _Py_PASTE_VERSION("64 bit (Intel)") +#elif defined(_M_IA64) +#define COMPILER _Py_PASTE_VERSION("64 bit (Itanium)") +#elif defined(_M_AMD64) +#define COMPILER _Py_PASTE_VERSION("64 bit (AMD64)") #else #define COMPILER _Py_PASTE_VERSION("64 bit (Unknown)") #endif