diff options
Diffstat (limited to 'cppe/include/IceE/Config.h')
-rw-r--r-- | cppe/include/IceE/Config.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/cppe/include/IceE/Config.h b/cppe/include/IceE/Config.h index 1bcd826b5c7..9100b184acc 100644 --- a/cppe/include/IceE/Config.h +++ b/cppe/include/IceE/Config.h @@ -87,9 +87,11 @@ // Most CPUs support only one endianness, with the notable exceptions // of Itanium (IA64) and MIPS. // -#if defined(__i386) || defined(_M_IX86) || defined (__x86_64) || defined (_M_ARM) +#if defined(__i386) || defined(_M_IX86) || defined (__x86_64) || \ + defined (_M_ARM) || defined(__MIPSEL__) # define ICE_LITTLE_ENDIAN -#elif defined(__sparc) || defined(__sparc__) || defined(__hppa) || defined(__ppc__) || defined(_ARCH_COM) +#elif defined(__sparc) || defined(__sparc__) || defined(__hppa) || \ + defined(__ppc__) || defined(_ARCH_COM) || defined(__MIPSEB__) # define ICE_BIG_ENDIAN #else # error "Unknown architecture" |