diff options
author | Andre McCurdy <armccurdy@gmail.com> | 2015-12-18 17:45:18 -0800 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2016-01-04 14:55:17 +0100 |
commit | 4b358f9475954ca678a2611e9312fb65f534fb5b (patch) | |
tree | 47ec7893ca3b2c5d004a6744dfc2cd9e81cdad49 | |
parent | c54361fc1e7c3f021a4544fc9df3c7896afdf61c (diff) | |
download | meta-openembedded-4b358f9475954ca678a2611e9312fb65f534fb5b.tar.gz |
mpg123: add textrel to INSANE_SKIP
The x86 assembler optimisations contains text relocations and there
are no upstream plans to fix them:
http://sourceforge.net/p/mpg123/bugs/168/
Benchmarking suggests that the SSE assembler is still clearly faster
than the generic C code, so leave the assembler optimisations enabled.
Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
-rw-r--r-- | meta-multimedia/recipes-multimedia/mpg123/mpg123_1.22.4.bb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta-multimedia/recipes-multimedia/mpg123/mpg123_1.22.4.bb b/meta-multimedia/recipes-multimedia/mpg123/mpg123_1.22.4.bb index 22ea572b2..d11a312c0 100644 --- a/meta-multimedia/recipes-multimedia/mpg123/mpg123_1.22.4.bb +++ b/meta-multimedia/recipes-multimedia/mpg123/mpg123_1.22.4.bb | |||
@@ -51,6 +51,10 @@ EXTRA_OECONF = " \ | |||
51 | ${@bb.utils.contains('TUNE_FEATURES', 'altivec', '--with-cpu=altivec', '', d)} \ | 51 | ${@bb.utils.contains('TUNE_FEATURES', 'altivec', '--with-cpu=altivec', '', d)} \ |
52 | " | 52 | " |
53 | 53 | ||
54 | # The x86 assembler optimisations contains text relocations and there are no | ||
55 | # upstream plans to fix them: http://sourceforge.net/p/mpg123/bugs/168/ | ||
56 | INSANE_SKIP_${PN}_append_x86 = " textrel" | ||
57 | |||
54 | # Fails to build with thumb-1 (qemuarm) | 58 | # Fails to build with thumb-1 (qemuarm) |
55 | #| {standard input}: Assembler messages: | 59 | #| {standard input}: Assembler messages: |
56 | #| {standard input}:47: Error: selected processor does not support Thumb mode `smull r5,r6,r7,r4' | 60 | #| {standard input}:47: Error: selected processor does not support Thumb mode `smull r5,r6,r7,r4' |