I'm reporting this bug because the package in summary fails to build when forcing --as-needed on through spec files (check out http://blog.flameeyes.eu/2008/11/14/problems-and-mitigation-strategies-for-as-needed for details). Please note that this bug _might_ apply to -Wl,--as-needed in LDFLAGS as well; in both cases it should be fixed. Also, if this is due to the package in question not respecting user-defined LDFLAGS, you should get to fix that too. Check the attached build log. Thanks, Diego
Created attachment 231911 [details] Build log
libxenguest.so was linked with -lbz2 -llzma too early in the link line, so the forced --as-needed dropped them. The build later failed when an application linked to libxenguest.so and the linker discovered the missing symbols. The rule to link the various .opic files into libxenguest.so needs to be modified to place -lbz2 -llzma after the objects, not before.
+ 25 Jun 2010; Kacper Kowalik <xarthisius@gentoo.org> + xen-tools-4.0.0.ebuild, -files/xen-tools-4.0.0-as-needed.patch, + +files/xen-tools-4.0.0-asneeded.patch: + Fixing build with --as-neeed wrt bug 320339. Thanks to Diego for + reporting.