From cd1a23727f83f7f19f71fe10cc74ed287696c226 Mon Sep 17 00:00:00 2001 From: Thomas Petazzoni Date: Fri, 25 Apr 2025 22:18:21 +0200 Subject: [PATCH] package/gcc: drop useless condition on BR2_GCC_ENABLE_GRAPHITE For a long while now, we only support building GCC >= 8.x, so the dependency of BR2_GCC_ENABLE_GRAPHITE on GCC >= 5.x is useless, drop it, together with the corresponding Config.in comment. Signed-off-by: Thomas Petazzoni Signed-off-by: Julien Olivain (cherry picked from commit b5f14d65cb420685ea636c8541f98eff3b2f3630) Signed-off-by: Thomas Perale --- package/gcc/Config.in.host | 4 ---- 1 file changed, 4 deletions(-) diff --git a/package/gcc/Config.in.host b/package/gcc/Config.in.host index 401f2dbe2a..4623b20b45 100644 --- a/package/gcc/Config.in.host +++ b/package/gcc/Config.in.host @@ -131,10 +131,6 @@ config BR2_GCC_ENABLE_OPENMP config BR2_GCC_ENABLE_GRAPHITE bool "Enable graphite support" - depends on BR2_TOOLCHAIN_GCC_AT_LEAST_5 help This option enables the graphite optimizations in the compiler. - -comment "graphite support needs gcc >= 5.x" - depends on !BR2_TOOLCHAIN_GCC_AT_LEAST_5