From e67c0460d20010fbb14ea6ec6ce270178938f27e Mon Sep 17 00:00:00 2001 From: Ashwin Prabhakar Date: Thu, 13 Aug 2026 10:47:12 +0200 Subject: [PATCH] assimp: upgrade to latest master to fix GCC 16 build failure Update SRCREV to include upstream commit 3edb90201 ("Fix two compiler warnings (#6669)") which removes an unused variable 'qu' in MS3DLoader.cpp that triggers -Werror=unused-but-set-variable with GCC 16. Also drop -DASSIMP_WARNINGS_AS_ERRORS=OFF as it is no longer needed with the source fix in place. Signed-off-by: Ashwin Prabhakar Signed-off-by: Khem Raj --- meta-oe/recipes-graphics/assimp/assimp_git.bb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/meta-oe/recipes-graphics/assimp/assimp_git.bb b/meta-oe/recipes-graphics/assimp/assimp_git.bb index 4cf2d1f787..b2d7a573de 100644 --- a/meta-oe/recipes-graphics/assimp/assimp_git.bb +++ b/meta-oe/recipes-graphics/assimp/assimp_git.bb @@ -11,7 +11,7 @@ DEPENDS = "zlib" SRC_URI = "git://github.com/assimp/assimp.git;protocol=https;branch=master" -SRCREV = "1962da5ac484434524e7a25d566046edd932f901" +SRCREV = "fe1965b3e73f7c241265e8e5b3015764936a6ce5" PV = "5.x+git${SRCPV}" @@ -20,7 +20,6 @@ inherit cmake EXTRA_OECMAKE = "\ -DASSIMP_BUILD_ASSIMP_TOOLS=OFF \ -DASSIMP_BUILD_TESTS=OFF \ - -DASSIMP_WARNINGS_AS_ERRORS=OFF \ -DASSIMP_LIB_INSTALL_DIR=${baselib} \ -DCMAKE_INSTALL_PREFIX=${prefix} \ -DCMAKE_INSTALL_LIBDIR=${baselib} \