Commit 38260998a207df693747877e8d96aa6c68ea29c6

Authored by pbrook
1 parent 647c5930

mipsel configure support (Thiemo Seufer).


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1771 c046a42c-6fe2-441c-8c8c-71466251a162
.cvsignore
... ... @@ -22,5 +22,6 @@ x86_64-softmmu
22 22 sparc64-user
23 23 sparc64-softmmu
24 24 mips-softmmu
  25 +mipsel-softmmu
25 26 mips-user
26 27 mipsel-user
... ...
Makefile
... ... @@ -105,6 +105,7 @@ tarbin:
105 105 $(bindir)/qemu-system-sparc \
106 106 $(bindir)/qemu-system-x86_64 \
107 107 $(bindir)/qemu-system-mips \
  108 + $(bindir)/qemu-system-mipsel \
108 109 $(bindir)/qemu-system-arm \
109 110 $(bindir)/qemu-i386 \
110 111 $(bindir)/qemu-arm \
... ...
configure
... ... @@ -232,7 +232,7 @@ fi
232 232  
233 233 if test -z "$target_list" ; then
234 234 # these targets are portable
235   - target_list="i386-softmmu ppc-softmmu sparc-softmmu x86_64-softmmu mips-softmmu arm-softmmu"
  235 + target_list="i386-softmmu ppc-softmmu sparc-softmmu x86_64-softmmu mips-softmmu mipsel-softmmu arm-softmmu"
236 236 # the following are Linux specific
237 237 if [ "$linux" = "yes" ] ; then
238 238 target_list="i386-user arm-user armeb-user sparc-user ppc-user mips-user mipsel-user $target_list"
... ...