commit | 512efb464b8c840f03f80b5ed8da9672b7b3e246 | [log] [tgz] |
---|---|---|
author | Martin v. Löwis <martin@v.loewis.de> | Tue Jul 27 14:16:14 2004 +0000 |
committer | Martin v. Löwis <martin@v.loewis.de> | Tue Jul 27 14:16:14 2004 +0000 |
tree | 5dd92acf92793bda609c32446687931e449c8a4e | |
parent | ce4bae6170451553b3da5672764ea0c5ae5197f7 [diff] |
Properly check for Win64 compilers.
diff --git a/PC/pyconfig.h b/PC/pyconfig.h index 79f5ddd..557342f 100644 --- a/PC/pyconfig.h +++ b/PC/pyconfig.h
@@ -98,6 +98,10 @@ #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