Commit 512efb46 authored by Martin v. Löwis's avatar Martin v. Löwis

Properly check for Win64 compilers.

parent ce4bae61
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment