1
0

Hopefully fixed the sparc not being detected

This commit is contained in:
Alexander Harkness 2013-12-04 18:57:23 +00:00
parent e48168aa13
commit 9f1efbdf21

View File

@ -26,7 +26,9 @@
(defined(_WIN32) && defined(__ARM__) && defined(_MSC_VER)) \ (defined(_WIN32) && defined(__ARM__) && defined(_MSC_VER)) \
) )
#define IS_LITTLE_ENDIAN #define IS_LITTLE_ENDIAN
#elif defined (__ARMEB__) #elif ( \
defined (__ARMEB__) || defined(__sparc) \
)
#define IS_BIG_ENDIAN #define IS_BIG_ENDIAN
#else #else
#error Cannot determine endianness of this platform #error Cannot determine endianness of this platform