mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-13 02:22:57 +01:00
Supported little endian for MIPS
This commit is contained in:
parent
50f1f12cab
commit
368fff1c05
@ -151,7 +151,17 @@
|
||||
#define POCO_ARCH_LITTLE_ENDIAN 1
|
||||
#elif defined(__mips__) || defined(__mips) || defined(__MIPS__) || defined(_M_MRX000)
|
||||
#define POCO_ARCH POCO_ARCH_MIPS
|
||||
#define POCO_ARCH_BIG_ENDIAN 1
|
||||
#if defined(POCO_OS_FAMILY_WINDOWS)
|
||||
// Is this OK? Supports windows only little endian??
|
||||
#define POCO_ARCH_LITTLE_ENDIAN 1
|
||||
#elif defined(__MIPSEB__) || defined(_MIPSEB) || defined(__MIPSEB)
|
||||
#define POCO_ARCH_BIG_ENDIAN 1
|
||||
#elif defined(__MIPSEL__) || defined(_MIPSEL) || defined(__MIPSEL)
|
||||
#define POCO_ARCH_LITTLE_ENDIAN 1
|
||||
#else
|
||||
#error "MIPS but neither MIPSEL nor MIPSEB?"
|
||||
#endif
|
||||
|
||||
#elif defined(__hppa) || defined(__hppa__)
|
||||
#define POCO_ARCH POCO_ARCH_HPPA
|
||||
#define POCO_ARCH_BIG_ENDIAN 1
|
||||
|
Loading…
Reference in New Issue
Block a user