diff options
Diffstat (limited to 'Makefile.target')
-rw-r--r-- | Makefile.target | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Makefile.target b/Makefile.target index 0f190cfa0f..9b0459ec18 100644 --- a/Makefile.target +++ b/Makefile.target @@ -4,6 +4,9 @@ TARGET_BASE_ARCH:=$(TARGET_ARCH) ifeq ($(TARGET_ARCH), x86_64) TARGET_BASE_ARCH:=i386 endif +ifeq ($(TARGET_ARCH), mipsn32) +TARGET_BASE_ARCH:=mips +endif ifeq ($(TARGET_ARCH), mips64) TARGET_BASE_ARCH:=mips endif @@ -50,6 +53,11 @@ ifeq ($(TARGET_ARCH),mips) TARGET_ARCH2=mipsel endif endif +ifeq ($(TARGET_ARCH),mipsn32) + ifneq ($(TARGET_WORDS_BIGENDIAN),yes) + TARGET_ARCH2=mipsn32el + endif +endif ifeq ($(TARGET_ARCH),mips64) ifneq ($(TARGET_WORDS_BIGENDIAN),yes) TARGET_ARCH2=mips64el |