Commit 01f5e596ed591e2e1fd1e84d13bcaac6d093fe2a
1 parent
ea31eb5b
mipsel target
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1698 c046a42c-6fe2-441c-8c8c-71466251a162
Showing
1 changed file
with
8 additions
and
0 deletions
Makefile.target
| ... | ... | @@ -31,8 +31,16 @@ ifeq ($(TARGET_ARCH),arm) |
| 31 | 31 | QEMU_USER=qemu-arm |
| 32 | 32 | endif |
| 33 | 33 | else |
| 34 | +ifeq ($(TARGET_ARCH),mips) | |
| 35 | + ifeq ($(TARGET_WORDS_BIGENDIAN),yes) | |
| 36 | + QEMU_USER=qemu-mips | |
| 37 | + else | |
| 38 | + QEMU_USER=qemu-mipsel | |
| 39 | + endif | |
| 40 | +else | |
| 34 | 41 | QEMU_USER=qemu-$(TARGET_ARCH) |
| 35 | 42 | endif |
| 43 | +endif | |
| 36 | 44 | # system emulator name |
| 37 | 45 | ifdef CONFIG_SOFTMMU |
| 38 | 46 | ifeq ($(TARGET_ARCH), i386) | ... | ... |