i'm interested in qemu-system-arm, but really why bother defining TARGET_LIST at all ? why not build all binaries by default
added to qemu-softmmu arm and mips added to qemu-user mips Please test them
you're still just hardcoding the list ... so your fix may be ok for now, but what about when more support is added in the future ? why not use a dynamic list like: $(target_list=""; eval $(grep target_list=.*-user configure); echo $target_list) $(target_list=""; eval $(grep target_list=.*-soft configure); echo $target_list)
Usually even experimental targets are present and sometimes they are just broken on certain arches. So the best way is to check for all and then restrict to the only working ones.
looks like 0.9.0 does things nicely now