diff options
author | Saul Wold <sgw@linux.intel.com> | 2011-04-19 16:34:05 -0700 |
---|---|---|
committer | Saul Wold <sgw@linux.intel.com> | 2011-04-22 22:03:56 -0700 |
commit | 09a55b1d4354531afe692f2618bd4fa5bf2dec74 (patch) | |
tree | 029b52233bc81ec2f05464357e4561152dda44b6 /meta | |
parent | a46466893407d44dd16ab37ae70e1bee14bdde0a (diff) | |
download | openembedded-core-09a55b1d4354531afe692f2618bd4fa5bf2dec74.tar.gz openembedded-core-09a55b1d4354531afe692f2618bd4fa5bf2dec74.tar.bz2 openembedded-core-09a55b1d4354531afe692f2618bd4fa5bf2dec74.zip |
qemu: disable sdl for target build
This allows qemu to build for the target in the world build.
Not sure this would make sense to run on the target.
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-devtools/qemu/qemu.inc | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/meta/recipes-devtools/qemu/qemu.inc b/meta/recipes-devtools/qemu/qemu.inc index 412bdfd837..362e9f35e5 100644 --- a/meta/recipes-devtools/qemu/qemu.inc +++ b/meta/recipes-devtools/qemu/qemu.inc @@ -8,9 +8,13 @@ QEMU_TARGETS ?= "arm i386 mips mipsel mips64 mips64el ppc sh4 x86_64" require qemu-targets.inc -EXTRA_OECONF += "--target-list=${@get_qemu_target_list(d)} --disable-werror --disable-vnc-tls --enable-kvm --audio-drv-list=oss,alsa --audio-card-list=ac97,es1370" +SDL ?= "--disable-sdl" +SDL_virtclass-native ?= "" +SDL_virtclass-nativesdk ?= "" -#EXTRA_OECOF += "--disable-sdl" +EXTRA_OECONF += "--target-list=${@get_qemu_target_list(d)} --disable-werror --disable-vnc-tls --enable-kvm --audio-drv-list=oss,alsa --audio-card-list=ac97,es1370 ${SDL}" + +#EXTRA_OECONF += "--disable-sdl" inherit autotools |