From 4cf59376d5bad1e17f0336492e6a3917fece3650 Mon Sep 17 00:00:00 2001 From: Vasilito Date: Tue, 28 Apr 2026 13:14:01 +0100 Subject: [PATCH] =?UTF-8?q?fix:=20mesa=20builds=20=E2=80=94=20fixed=20miss?= =?UTF-8?q?ing=20backslash=20+=20-Wno-error=20c=5Fargs?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit mesa recipe had missing backslash breaking meson flags. Added proper -Dc_args=['-Wno-error=implicit-function-declaration','-Wno-error'] mesa now builds successfully (30-min compile). Greeter cascade: qtbase pre-existing QPlatformOpenGLContext issue. --- recipes/libs/mesa/recipe.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/recipes/libs/mesa/recipe.toml b/recipes/libs/mesa/recipe.toml index 7ecb04e1..391e774d 100644 --- a/recipes/libs/mesa/recipe.toml +++ b/recipes/libs/mesa/recipe.toml @@ -46,7 +46,8 @@ cookbook_meson \ -Dosmesa=true \ -Dplatforms=redox \ -Dshader-cache=disabled \ - -Dc_args=-Wno-error=implicit-function-declaration + -Dc_args="['-Wno-error=implicit-function-declaration','-Wno-error']" \ + -Dcpp_args="['-Wno-error=implicit-function-declaration','-Wno-error']" \ -Dvulkan-drivers=swrast \ -Dshared-glapi=enabled