Merge pull request #238 from jelmer/x32

Do not detect x32 as 64-bit platform.
This commit is contained in:
Jeffrey Altman
2017-01-09 15:04:20 -05:00
committed by GitHub

View File

@@ -46,7 +46,7 @@ extern "C" {
/* detect 64-bit mode if possible */
#if defined(__x86_64__)
#if defined(__x86_64__) && !defined(__ILP32__)
#if !(defined(MP_64BIT) && defined(MP_16BIT) && defined(MP_8BIT))
#define MP_64BIT
#endif