diff options
| author | Ross Burton <ross.burton@arm.com> | 2025-06-12 21:30:01 +0100 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-06-16 17:57:29 +0100 |
| commit | fa5e85de486a47ea53a99b7ba2199411e9817ee0 (patch) | |
| tree | 1e30031bd193c0d39bd35afc5f974db256604911 | |
| parent | 82ee4aeb28c080736e9bd46a6f0e00a8df49d02c (diff) | |
| download | poky-fa5e85de486a47ea53a99b7ba2199411e9817ee0.tar.gz | |
libtheora: disable all 32-bit arm assembler
The 32-bit Arm assembler is mostly broken. In 1.1.0 it was never used,
and 1.2.0 tries to enable it and there are a number of different ways it
can fail (some gcc/architecture combinations, and all clang builds).
Until this is fixed upstream, simply disable assembler entirely.
(From OE-Core rev: 0ee2166f9d03ab01f2ea3dd29b8e76ae168fa9aa)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
| -rw-r--r-- | meta/recipes-multimedia/libtheora/libtheora_1.2.0.bb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/meta/recipes-multimedia/libtheora/libtheora_1.2.0.bb b/meta/recipes-multimedia/libtheora/libtheora_1.2.0.bb index 361d2c6e4a..1a1b5fce06 100644 --- a/meta/recipes-multimedia/libtheora/libtheora_1.2.0.bb +++ b/meta/recipes-multimedia/libtheora/libtheora_1.2.0.bb | |||
| @@ -19,6 +19,11 @@ inherit autotools pkgconfig | |||
| 19 | 19 | ||
| 20 | EXTRA_OECONF = "--disable-examples --disable-doc" | 20 | EXTRA_OECONF = "--disable-examples --disable-doc" |
| 21 | 21 | ||
| 22 | # theora 1.2.0 has broken 32-bit arm assembler, see: | ||
| 23 | # https://gitlab.xiph.org/xiph/theora/-/issues/2339 | ||
| 24 | # https://gitlab.xiph.org/xiph/theora/-/issues/2340 | ||
| 25 | EXTRA_OECONF:append:arm = " --disable-asm" | ||
| 26 | |||
| 22 | # these old architectures don't support all the instructions from the asm source files | 27 | # these old architectures don't support all the instructions from the asm source files |
| 23 | EXTRA_OECONF:append:armv4 = " --disable-asm " | 28 | EXTRA_OECONF:append:armv4 = " --disable-asm " |
| 24 | EXTRA_OECONF:append:armv5 = " --disable-asm " | 29 | EXTRA_OECONF:append:armv5 = " --disable-asm " |
