diff options
author | Ross Burton <ross.burton@arm.com> | 2024-10-08 20:30:55 +0100 |
---|---|---|
committer | Steve Sakoman <steve@sakoman.com> | 2024-11-11 09:16:26 -0800 |
commit | 2f866930d9d6da0c66ed8808ea33d201e4834b7d (patch) | |
tree | 0b88609ed9b60d6d60f87579fcd33b133892c2d7 | |
parent | 9c4e3fe7dc33cc022ac0e93b17093e680e168311 (diff) | |
download | poky-2f866930d9d6da0c66ed8808ea33d201e4834b7d.tar.gz |
ffmpeg: no need for textrel INSANE_SKIP
It appears in testing that modern ffmpeg no longer needs to disable PIC,
so there's no need to ignore textrel warnings.
(From OE-Core rev: 6eebf4c2a9b5d30cf5145df61f1713ec1a6ce91a)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 98d577fef75d54a59eeacaabb4a45e44b2f6832e)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
-rw-r--r-- | meta/recipes-multimedia/ffmpeg/ffmpeg_7.0.2.bb | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/meta/recipes-multimedia/ffmpeg/ffmpeg_7.0.2.bb b/meta/recipes-multimedia/ffmpeg/ffmpeg_7.0.2.bb index b16bd51dbd..af66104ebf 100644 --- a/meta/recipes-multimedia/ffmpeg/ffmpeg_7.0.2.bb +++ b/meta/recipes-multimedia/ffmpeg/ffmpeg_7.0.2.bb | |||
@@ -181,13 +181,3 @@ FILES:libpostproc = "${libdir}/libpostproc${SOLIBS}" | |||
181 | FILES:libswresample = "${libdir}/libswresample${SOLIBS}" | 181 | FILES:libswresample = "${libdir}/libswresample${SOLIBS}" |
182 | FILES:libswscale = "${libdir}/libswscale${SOLIBS}" | 182 | FILES:libswscale = "${libdir}/libswscale${SOLIBS}" |
183 | FILES:${PN}-examples = "${datadir}/${PN}/examples" | 183 | FILES:${PN}-examples = "${datadir}/${PN}/examples" |
184 | |||
185 | # ffmpeg disables PIC on some platforms (e.g. x86-32) | ||
186 | INSANE_SKIP:${MLPREFIX}libavcodec = "textrel" | ||
187 | INSANE_SKIP:${MLPREFIX}libavdevice = "textrel" | ||
188 | INSANE_SKIP:${MLPREFIX}libavfilter = "textrel" | ||
189 | INSANE_SKIP:${MLPREFIX}libavformat = "textrel" | ||
190 | INSANE_SKIP:${MLPREFIX}libavutil = "textrel" | ||
191 | INSANE_SKIP:${MLPREFIX}libswscale = "textrel" | ||
192 | INSANE_SKIP:${MLPREFIX}libswresample = "textrel" | ||
193 | INSANE_SKIP:${MLPREFIX}libpostproc = "textrel" | ||