diff options
Diffstat (limited to 'package/qemu/Config.in')
-rw-r--r-- | package/qemu/Config.in | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/package/qemu/Config.in b/package/qemu/Config.in index fff786d3f1..25936e2333 100644 --- a/package/qemu/Config.in +++ b/package/qemu/Config.in @@ -1,11 +1,16 @@ +config BR2_PACKAGE_QEMU_ARCH_SUPPORTS_TARGET + bool + # Only tested on these architectures + default y if BR2_i386 || BR2_mips || BR2_mipsel || BR2_x86_64 + comment "QEMU requires a toolchain with wchar, threads" - depends on BR2_i386 || BR2_x86_64 + depends on BR2_PACKAGE_QEMU_ARCH_SUPPORTS_TARGET depends on BR2_USE_MMU depends on !(BR2_TOOLCHAIN_HAS_THREADS && BR2_USE_WCHAR) config BR2_PACKAGE_QEMU bool "QEMU" - depends on BR2_i386 || BR2_x86_64 + depends on BR2_PACKAGE_QEMU_ARCH_SUPPORTS_TARGET depends on BR2_TOOLCHAIN_HAS_THREADS depends on BR2_USE_WCHAR # gettext depends on BR2_USE_MMU # fork() |