From 8fce6d7c16ee844ec3e4484096c4fcc1cf297ff2 Mon Sep 17 00:00:00 2001 From: Bernd Kuhls Date: Sat, 19 Mar 2016 21:25:35 +0100 Subject: [PATCH] Config.in: add symbols for BR2_HOST_GCC_AT_LEAST_4_6 This option is needed to fix the Kodi build with older host gcc versions. Signed-off-by: Bernd Kuhls Signed-off-by: Thomas Petazzoni --- Config.in | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Config.in b/Config.in index dfb57217ea..b5cc892cc7 100644 --- a/Config.in +++ b/Config.in @@ -23,9 +23,14 @@ config BR2_HOST_GCC_VERSION string option env="HOST_GCC_VERSION" +config BR2_HOST_GCC_AT_LEAST_4_6 + bool + default y if BR2_HOST_GCC_VERSION = "4 6" + config BR2_HOST_GCC_AT_LEAST_4_7 bool default y if BR2_HOST_GCC_VERSION = "4 7" + select BR2_HOST_GCC_AT_LEAST_4_6 config BR2_HOST_GCC_AT_LEAST_4_8 bool -- 2.39.2