mirror of
https://github.com/python/cpython.git
synced 2025-11-01 02:38:53 +00:00
Identify the ARM compiler.
This commit is contained in:
parent
2aee6a6460
commit
e5581f9d68
1 changed files with 3 additions and 1 deletions
|
|
@ -193,8 +193,10 @@ typedef _W64 int ssize_t;
|
|||
#define HAVE_SSIZE_T 1
|
||||
|
||||
#if defined(MS_WIN32) && !defined(MS_WIN64)
|
||||
#ifdef _M_IX86
|
||||
#if defined(_M_IX86)
|
||||
#define COMPILER _Py_PASTE_VERSION("32 bit (Intel)")
|
||||
#elif defined(_M_ARM)
|
||||
#define COMPILER _Py_PASTE_VERSION("32 bit (ARM)")
|
||||
#else
|
||||
#define COMPILER _Py_PASTE_VERSION("32 bit (Unknown)")
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue