mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
Correctly detect AMD64 architecture on VC2003
This commit is contained in:
parent
d0aabc03c6
commit
df7f38face
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue