windows: mingw32 gcc doesn't define endianness macros, so just assume little.

Specifically, at least Ubuntu's i586-mingw32msvc-gcc doesn't supply
__LITTLE_ENDIAN__ and friends. And as it's safe enough to assume that
Windows is only little-endian, then it's defined unconditionally,
instead of duplicating detection logic in py/mpconfig.h (or adding
windows-specific defines to it).
pull/894/head
Paul Sokolovsky 2014-10-06 23:18:59 +03:00
rodzic 5dc8f9b28a
commit 5d328cbeb9
1 zmienionych plików z 4 dodań i 0 usunięć

Wyświetl plik

@ -88,6 +88,10 @@ typedef unsigned int mp_uint_t; // must be pointer size
#define BYTES_PER_WORD sizeof(mp_int_t)
// Just assume Windows is little-endian - mingw32 gcc doesn't
// define standard endianness macros.
#define MP_ENDIANNESS_LITTLE (1)
typedef void *machine_ptr_t; // must be of pointer size
typedef const void *machine_const_ptr_t; // must be of pointer size