diff options
author | Ming Liu <ming.liu@windriver.com> | 2013-11-13 16:15:47 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-11-20 14:03:28 +0000 |
commit | f61e62c87d4d5b1d77a41e1c7996c112d45b33ef (patch) | |
tree | 940119c1c77f83ed6a1d04eb94e4fca9f39bc2a9 /meta/recipes-devtools | |
parent | fe2574476ca3fe5934bcd324a3600196191a6011 (diff) | |
download | poky-f61e62c87d4d5b1d77a41e1c7996c112d45b33ef.tar.gz |
qemu: explicitly disable xen support
We don't make use of xen and when building on Ubuntu 13.04 when
libxen-dev is installed on the build host you will get errors like the
following:
| /usr/include/x86_64-linux-gnu/bits/string3.h:81: warning: memset used with constant zero length parameter; this could be due to transposed parameters
| /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib/libxenguest.so: undefined reference to `lzma_alone_decoder@XZ_5.0'
| /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib/libxenguest.so: undefined reference to `lzma_code@XZ_5.0'
| /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib/libxenguest.so: undefined reference to `lzma_stream_decoder@XZ_5.0'
| /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib/libxenguest.so: undefined reference to `lzma_end@XZ_5.0'
This change disables xen for both -native and target packages but
since it is a PACKAGECONFIG a user could tune this to have xen support
in the target package.
(From OE-Core rev: fd638b975aac826d7137fd11db94b64ba82de592)
Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com>
Signed-off-by: Ming Liu <ming.liu@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools')
-rw-r--r-- | meta/recipes-devtools/qemu/qemu.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/recipes-devtools/qemu/qemu.inc b/meta/recipes-devtools/qemu/qemu.inc index 26b670bab4..21ce4891e1 100644 --- a/meta/recipes-devtools/qemu/qemu.inc +++ b/meta/recipes-devtools/qemu/qemu.inc | |||
@@ -80,6 +80,7 @@ PACKAGECONFIG ??= "" | |||
80 | PACKAGECONFIG[virtfs] = "--enable-virtfs --enable-attr,--disable-virtfs,libcap attr," | 80 | PACKAGECONFIG[virtfs] = "--enable-virtfs --enable-attr,--disable-virtfs,libcap attr," |
81 | PACKAGECONFIG[aio] = "--enable-linux-aio,--disable-linux-aio,libaio," | 81 | PACKAGECONFIG[aio] = "--enable-linux-aio,--disable-linux-aio,libaio," |
82 | PACKAGECONFIG[xfs] = "--enable-xfsctl,--disable-xfsctl,xfsprogs," | 82 | PACKAGECONFIG[xfs] = "--enable-xfsctl,--disable-xfsctl,xfsprogs," |
83 | PACKAGECONFIG[xen] = "--enable-xen, --disable-xen,," | ||
83 | 84 | ||
84 | # Qemu target will not build in world build for ARM or Mips | 85 | # Qemu target will not build in world build for ARM or Mips |
85 | BROKEN_qemuarm = "1" | 86 | BROKEN_qemuarm = "1" |