diff options
author | Martin Jansa <Martin.Jansa@gmail.com> | 2011-12-15 12:58:11 +0100 |
---|---|---|
committer | Koen Kooi <koen@dominion.thruhere.net> | 2011-12-16 08:43:43 +0100 |
commit | 11fbc9fb4efaa59aca85ba352f6ebc3412eaedd0 (patch) | |
tree | 1937a6cc0708e1fc2592f9f7a0b7d3df3927b367 /meta-oe/recipes-multimedia | |
parent | 5c24a66ea7b8844680b0926bac31f2b1f68c0941 (diff) | |
download | meta-openembedded-11fbc9fb4efaa59aca85ba352f6ebc3412eaedd0.tar.gz |
libvpx: disable tree-vectorize
* It's causing ICE with latest gcc-4.6 from meta-oe, see:
http://lists.linuxtogo.org/pipermail/openembedded-devel/2011-November/036001.html
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/recipes-multimedia')
-rw-r--r-- | meta-oe/recipes-multimedia/webm/libvpx.inc | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/meta-oe/recipes-multimedia/webm/libvpx.inc b/meta-oe/recipes-multimedia/webm/libvpx.inc index fbece03ac..8434f3841 100644 --- a/meta-oe/recipes-multimedia/webm/libvpx.inc +++ b/meta-oe/recipes-multimedia/webm/libvpx.inc | |||
@@ -1,7 +1,7 @@ | |||
1 | DESCRIPTION = "vpx Multi-Format Codec SDK" | 1 | DESCRIPTION = "vpx Multi-Format Codec SDK" |
2 | LICENSE = "BSD" | 2 | LICENSE = "BSD" |
3 | 3 | ||
4 | INC_PR = "r1" | 4 | INC_PR = "r2" |
5 | 5 | ||
6 | SRC_URI = "http://webm.googlecode.com/files/libvpx-v${PV}.tar.bz2" | 6 | SRC_URI = "http://webm.googlecode.com/files/libvpx-v${PV}.tar.bz2" |
7 | S = "${WORKDIR}/libvpx-v${PV}" | 7 | S = "${WORKDIR}/libvpx-v${PV}" |
@@ -10,7 +10,18 @@ S = "${WORKDIR}/libvpx-v${PV}" | |||
10 | # sysroots/armv4t-oe-linux-gnueabi/usr/lib/libvpx.a(vpx_encoder.c.o)(.text+0xc4): unresolvable R_ARM_THM_CALL relocation against symbol `memcpy@@GLIBC_2.4' | 10 | # sysroots/armv4t-oe-linux-gnueabi/usr/lib/libvpx.a(vpx_encoder.c.o)(.text+0xc4): unresolvable R_ARM_THM_CALL relocation against symbol `memcpy@@GLIBC_2.4' |
11 | ARM_INSTRUCTION_SET = "arm" | 11 | ARM_INSTRUCTION_SET = "arm" |
12 | 12 | ||
13 | CFLAGS += "-fPIC" | 13 | #-ftree-vectorize was causing ICE with gcc-4.6 from meta-oe, see |
14 | # http://lists.linuxtogo.org/pipermail/openembedded-devel/2011-November/036001.html | ||
15 | #| [CC] vpx_scale/generic/gen_scalers.c.o | ||
16 | #| vpx_scale/generic/gen_scalers.c: In function 'vp8cx_vertical_band_3_4_scale_c': | ||
17 | #| vpx_scale/generic/gen_scalers.c:537:6: internal compiler error: in vect_get_vec_def_for_stmt_copy, at tree-vect-stmts.c:1390 | ||
18 | #| Please submit a full bug report, | ||
19 | #| with preprocessed source if appropriate. | ||
20 | #| See <http://gcc.gnu.org/bugs.html> for instructions. | ||
21 | #| make[1]: *** [vpx_scale/generic/gen_scalers.c.o] Error 1 | ||
22 | #| make: *** [.DEFAULT] Error 2 | ||
23 | |||
24 | CFLAGS += "-fPIC -fno-tree-vectorize" | ||
14 | 25 | ||
15 | export CC | 26 | export CC |
16 | export LD = "${CC}" | 27 | export LD = "${CC}" |