diff options
author | YunQiang Su <[email protected]> | 2016-05-28 20:33:15 +0800 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2016-05-31 09:05:40 -0700 |
commit | 2493dca54e18b24bcd8b7ff5432f4dc51dddc472 (patch) | |
tree | a7c423256914d8f6a7637e2fd6fd2be5a238c55f /lib/libspl | |
parent | b7faa7aabd420b056c9b9cbf6ab8849130385dca (diff) |
Add isa_defs for MIPS
GCC for MIPS only defines _LP64 when 64bit,
while no _ILP32 defined when 32bit.
Signed-off-by: YunQiang Su <[email protected]>
Signed-off-by: Brian Behlendorf <[email protected]>
Closes #4712
Diffstat (limited to 'lib/libspl')
-rw-r--r-- | lib/libspl/include/sys/isa_defs.h | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/lib/libspl/include/sys/isa_defs.h b/lib/libspl/include/sys/isa_defs.h index 61f4cd96a..3bca5cf02 100644 --- a/lib/libspl/include/sys/isa_defs.h +++ b/lib/libspl/include/sys/isa_defs.h @@ -172,7 +172,28 @@ extern "C" { #define _BIG_ENDIAN #define _SUNOS_VTOC_16 -#else /* Currently x86_64, i386, arm, powerpc, s390, and sparc are supported */ +/* MIPS arch specific defines */ +#elif defined(__mips__) + +#if defined(__MIPSEB__) +#define _BIG_ENDIAN +#elif defined(__MIPSEL__) +#define _LITTLE_ENDIAN +#else +#error MIPS no endian specified +#endif + +#ifndef _LP64 +#define _ILP32 +#endif + +#define _SUNOS_VTOC_16 + +#else +/* + * Currently supported: + * x86_64, i386, arm, powerpc, s390, sparc, and mips + */ #error "Unsupported ISA type" #endif |