Files
poky/meta/recipes-devtools
Robert Yang 1ea36c8cd3 qemu-native: depends on libxext-native when enable sdl
Fixed do_configure error:

ERROR: User requested feature sdl
       configure was not able to find it.
       Install SDL devel

The error message from log.do_configure, and if we check config.log, the
error is:

sysroots/x86_64-linux/usr/lib/libXext.so.6: undefined reference to `_XEatDataWords'

The _XEatDataWords is provided by libX11.so, the dependencies are:

qemu-native -> sdl(from the host) -> libXext.so(maybe host or native) -> libX11.so (maybe host or native)

For example on Ubuntu 12.04 x86_64, the link route is:

qemu-native's do_configure sdl checking:
/usr/lib/x86_64-linux-gnu/libSDL.so --> <sysroots>/x86_64-linux/usr/lib/libXext.so.6 --> /usr/lib/x86_64-linux-gnu/libX11.so

So it is:
host sdl -> sysroot libXext.so.6 -> host X11.so

qemu-native doesn't depend on libxext-native, so the error would happen
if the libx11-native is being rebuilding and the host's libX11.so
doesn't have _XEatDataWords.

Manually reproduce it on Ubuntu 12.04 x86_64:

$ bitbake qemu-native libx11-native libxext-native
$ bitbake qemu-native libx11-native -ccleansstate && bitbake qemu-native

Note, only qemu-native has this problem since libxext depends on libX11,
and SDL would depend on libxext when x11 is enabled.

(From OE-Core rev: fbf6995306d85ad868fa5d33da9b493e7e0de414)

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2014-08-29 23:44:37 +01:00
..
2014-08-23 09:26:10 +01:00
2014-03-02 17:25:28 +00:00
2014-07-19 00:09:01 +01:00
2014-07-16 10:20:50 +01:00
2014-05-21 19:50:21 +01:00
2014-08-15 18:21:48 +01:00
2014-07-16 10:20:50 +01:00
2014-01-02 12:50:24 +00:00
2014-08-02 09:26:14 +01:00
2014-08-28 15:12:44 +01:00
2014-07-17 12:28:50 +01:00
2014-08-02 09:26:17 +01:00
2014-08-28 15:12:42 +01:00
2014-07-19 00:18:21 +01:00
2014-08-28 15:12:44 +01:00
2014-08-11 10:53:05 +01:00
2014-08-23 09:26:11 +01:00
2014-08-28 15:12:44 +01:00
2014-04-10 17:35:15 +01:00
2014-08-23 09:26:10 +01:00
2013-08-13 23:05:58 +01:00