From: Peter Seiderer Date: Thu, 9 Feb 2017 18:00:31 +0000 (+0100) Subject: qt5: latest/5.8.0 needs c++11 host compiler support X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e3a4c386e432c616b373a6bb3de830456a43c342;p=buildroot.git qt5: latest/5.8.0 needs c++11 host compiler support Signed-off-by: Peter Seiderer Signed-off-by: Peter Korsgaard --- diff --git a/package/qt5/Config.in b/package/qt5/Config.in index 692943433b..c3560c3777 100644 --- a/package/qt5/Config.in +++ b/package/qt5/Config.in @@ -37,12 +37,13 @@ choice config BR2_QT5_VERSION_LATEST bool "Latest (5.8)" depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 # C++11 + depends on BR2_HOST_GCC_AT_LEAST_4_8 # C++11 help This option builds Qt 5.8, which is licensed under (L)GPLv3+. -comment "Latest Qt version needs toolchain w/ gcc >= 4.8" - depends on !BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 +comment "Latest Qt version needs host/toolchain w/ gcc >= 4.8" + depends on !BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 || !BR2_HOST_GCC_AT_LEAST_4_8 config BR2_QT5_VERSION_5_6 bool "LTS (5.6)"