diff options
author | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-09-30 01:58:33 +0000 |
---|---|---|
committer | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-09-30 01:58:33 +0000 |
commit | 540635ba650bd2529ce55c4135cd594a5fa109b5 (patch) | |
tree | e609e602a027047c3151159dc55c02550e80ea5e /Makefile.target | |
parent | 868d585aced5457218b3443398d08594d9c3ba6d (diff) |
Code provision for n32/n64 mips userland emulation. Not functional yet.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3284 c046a42c-6fe2-441c-8c8c-71466251a162
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 |