Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 131522 - qemu-0.8.0 disables a lot of binaries
Summary: qemu-0.8.0 disables a lot of binaries
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All Linux
: High major
Assignee: Luca Barbato
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2006-04-27 16:29 UTC by SpanKY
Modified: 2007-03-31 09:45 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description SpanKY gentoo-dev 2006-04-27 16:29:41 UTC
i'm interested in qemu-system-arm, but really why bother defining TARGET_LIST at all ?  why not build all binaries by default
Comment 1 Luca Barbato gentoo-dev 2006-04-27 16:54:52 UTC
added to qemu-softmmu arm and mips
added to qemu-user mips

Please test them
Comment 2 SpanKY gentoo-dev 2006-04-30 01:50:30 UTC
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)
Comment 3 Luca Barbato gentoo-dev 2006-05-06 03:58:32 UTC
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.
Comment 4 SpanKY gentoo-dev 2007-03-31 09:45:28 UTC
looks like 0.9.0 does things nicely now