One of the changes in gcc v14 is making implicit-function-declaration an error. For some older software packages the easiest fix is to add -fpermissive to the compile line.
Signed-off-by: Ryan Eatmon <[email protected]> --- .../recipes-multimedia/hevc-arm-decoder/hevc-arm-decoder_git.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-arago-extras/recipes-multimedia/hevc-arm-decoder/hevc-arm-decoder_git.bb b/meta-arago-extras/recipes-multimedia/hevc-arm-decoder/hevc-arm-decoder_git.bb index 3bcd6c7f..4d89818f 100644 --- a/meta-arago-extras/recipes-multimedia/hevc-arm-decoder/hevc-arm-decoder_git.bb +++ b/meta-arago-extras/recipes-multimedia/hevc-arm-decoder/hevc-arm-decoder_git.bb @@ -24,7 +24,7 @@ do_configure() { do_compile() { cd ${S}/Client/Build/ARM - oe_runmake CC="${CC}" LINKER="${CC}" + oe_runmake CC="${CC} -fpermissive" LINKER="${CC}" } do_install() { -- 2.17.1 -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#15360): https://lists.yoctoproject.org/g/meta-arago/message/15360 Mute This Topic: https://lists.yoctoproject.org/mt/106484817/21656 Group Owner: [email protected] Unsubscribe: https://lists.yoctoproject.org/g/meta-arago/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
