Correctly detect AMD64 architecture on VC2003

This commit is contained in:
Mark Hammond 2007-07-27 05:08:54 +00:00
parent d0aabc03c6
commit df7f38face
1 changed files with 1 additions and 1 deletions

View File

@ -140,7 +140,7 @@ MS_CORE_DLL.
#if defined(_M_IA64)
#define COMPILER _Py_PASTE_VERSION("64 bit (Itanium)")
#define MS_WINI64
#elif defined(_M_X64)
#elif defined(_M_X64) || defined(_M_AMD64)
#define COMPILER _Py_PASTE_VERSION("64 bit (AMD64)")
#define MS_WINX64
#else