Force -m32 in eppic.mk, similiar to how it's already done for ARM and
X86.
---
extensions/eppic.mk | 3 +++
1 file changed, 3 insertions(+)
diff --git a/extensions/eppic.mk b/extensions/eppic.mk
index 7421ebc..de3ff4f 100644
--- a/extensions/eppic.mk
+++ b/extensions/eppic.mk
@@ -16,6 +16,9 @@ endif
ifeq ($(TARGET), ARM)
TARGET_FLAGS += -m32
endif
+ifeq ($(TARGET), MIPS)
+ TARGET_FLAGS += -m32
+endif
ifeq ($(TARGET), X86)
TARGET_FLAGS += -m32
endif
--
1.7.10.4