summaryrefslogtreecommitdiff
path: root/PC/pyconfig.h
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2004-07-27 14:16:14 +0000
committerMartin v. Löwis <martin@v.loewis.de>2004-07-27 14:16:14 +0000
commit6fe5da147e2e44d53d9f408b3456edfe5925daf8 (patch)
tree9b8c01a04ec36a5cf83e58e77145ce91bd9966c8 /PC/pyconfig.h
parent07d75ea92b5df425a18e1c797bd9eedf4d20523c (diff)
downloadcpython-6fe5da147e2e44d53d9f408b3456edfe5925daf8.tar.gz
Properly check for Win64 compilers.
Diffstat (limited to 'PC/pyconfig.h')
-rw-r--r--PC/pyconfig.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/PC/pyconfig.h b/PC/pyconfig.h
index 79f5ddd52f..557342f876 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