aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/sys/isa_defs.h23
1 files changed, 22 insertions, 1 deletions
diff --git a/include/sys/isa_defs.h b/include/sys/isa_defs.h
index 3d474872c..53dead38c 100644
--- a/include/sys/isa_defs.h
+++ b/include/sys/isa_defs.h
@@ -145,7 +145,28 @@
#define _BIG_ENDIAN
-#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