mirror of
https://github.com/python/cpython.git
synced 2025-08-03 00:23:06 +00:00
Properly check for Win64 compilers.
This commit is contained in:
parent
ce4bae6170
commit
512efb464b
1 changed files with 4 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue