mipsel target

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1698 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
bellard 2005-12-06 21:42:17 +00:00
parent ea31eb5b0c
commit 01f5e596ed
1 changed files with 8 additions and 0 deletions

View File

@ -30,9 +30,17 @@ ifeq ($(TARGET_ARCH),arm)
else
QEMU_USER=qemu-arm
endif
else
ifeq ($(TARGET_ARCH),mips)
ifeq ($(TARGET_WORDS_BIGENDIAN),yes)
QEMU_USER=qemu-mips
else
QEMU_USER=qemu-mipsel
endif
else
QEMU_USER=qemu-$(TARGET_ARCH)
endif
endif
# system emulator name
ifdef CONFIG_SOFTMMU
ifeq ($(TARGET_ARCH), i386)