From 16e79c187eb2f80146b3a240fba443a06e7c6f3a Mon Sep 17 00:00:00 2001 From: Quentin Schulz Date: Fri, 27 Jun 2025 16:19:13 +0200 Subject: [PATCH] mesa: add libclc to PACKAGECONFIG for Panfrost-supported SoCs Panfrost mesa drivers do not compile without libclc support anymore, I assume since commit 20970bcd9652 ("panfrost: Add base of OpenCL C infrastructure") merged in 25.1.0. So this adds the missing libclc PACKAGECONFIG to Panfrost-supported SoCs. Note that mesa recipe in OE-Core will be updated to not build panfrost if libclc PACKAGECONFIG is missing. Reported-by: Trevor Woerner Reviewed-by: Trevor Woerner Signed-off-by: Quentin Schulz --- recipes-graphics/mesa/mesa.bbappend | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/recipes-graphics/mesa/mesa.bbappend b/recipes-graphics/mesa/mesa.bbappend index e0b38ce..507e2fa 100644 --- a/recipes-graphics/mesa/mesa.bbappend +++ b/recipes-graphics/mesa/mesa.bbappend @@ -1,6 +1,6 @@ -PACKAGECONFIG:append:rk3288 = " panfrost" +PACKAGECONFIG:append:rk3288 = " libclc panfrost" PACKAGECONFIG:append:rk3328 = " lima" -PACKAGECONFIG:append:rk3399 = " panfrost" -PACKAGECONFIG:append:rk3566 = " panfrost" -PACKAGECONFIG:append:rk3568 = " panfrost" -PACKAGECONFIG:append:px30 = " panfrost" +PACKAGECONFIG:append:rk3399 = " libclc panfrost" +PACKAGECONFIG:append:rk3566 = " libclc panfrost" +PACKAGECONFIG:append:rk3568 = " libclc panfrost" +PACKAGECONFIG:append:px30 = " libclc panfrost"