diff options
author | Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org> | 2013-04-04 20:39:51 +0000 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2013-04-09 21:34:15 +0200 |
commit | 392e30c21accc720c4e7ae38bc830bfc283a6490 (patch) | |
tree | e711cc8431295ef52fc9203cc1db6eccbb252243 /meta-oe | |
parent | 966f4664c9bcac3c1a2e17408bfa04a7cc5dbbb3 (diff) | |
download | meta-openembedded-392e30c21accc720c4e7ae38bc830bfc283a6490.tar.gz |
libvpx: do not hardcode -mfloat-api=softfp for ARM builds
| Configuring for target 'armv7-linux-gcc'
| enabling armv7
| enabling armv6
| enabling armv5te
| enabling fast_unaligned
| Unable to invoke compiler: arm-oe-linux-gnueabi-gcc -march=armv7-a -marm -mthumb-interwork -mfloat-abi=hard -mfpu=neon --sysroot=/home/hrw/HDD/devel/canonical/aarch64/openembedded/build/tmp-eglibc/sysroots/genericarmv7a -O2 -pipe -g -feliminate-unused-debug-types -fPIC -march=armv7-a -mcpu=cortex-a8 -mfpu=neon -mfloat-abi=softfp -O3 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -Wall -Wdeclaration-after-statement -Wdisabled-optimization -Wpointer-arith -Wtype-limits -Wcast-qual -Wno-unused
|
| Configuration failed. This could reflect a misconfiguration of your
| toolchains, improper options selected, or another problem. If you
| don't see any useful error messages above, the next step is to look
| at the configure error log file (config.err) to determine what
| configure was trying to do when it died.
Signed-off-by: Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe')
-rw-r--r-- | meta-oe/recipes-multimedia/webm/libvpx/do-not-hardcode-softfp-float-api.patch | 28 | ||||
-rw-r--r-- | meta-oe/recipes-multimedia/webm/libvpx_0.9.5.bb | 1 |
2 files changed, 29 insertions, 0 deletions
diff --git a/meta-oe/recipes-multimedia/webm/libvpx/do-not-hardcode-softfp-float-api.patch b/meta-oe/recipes-multimedia/webm/libvpx/do-not-hardcode-softfp-float-api.patch new file mode 100644 index 000000000..d87169421 --- /dev/null +++ b/meta-oe/recipes-multimedia/webm/libvpx/do-not-hardcode-softfp-float-api.patch | |||
@@ -0,0 +1,28 @@ | |||
1 | From: Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org> | ||
2 | |||
3 | Upstream-Status: Inappopriate [upstream has it done in other way] | ||
4 | |||
5 | Problem is solved upstream but we have quite old version so backporting patches | ||
6 | is waste of time. | ||
7 | |||
8 | --- | ||
9 | build/make/configure.sh | 4 ++-- | ||
10 | 1 file changed, 2 insertions(+), 2 deletions(-) | ||
11 | |||
12 | --- libvpx-v0.9.5.orig/build/make/configure.sh | ||
13 | +++ libvpx-v0.9.5/build/make/configure.sh | ||
14 | @@ -659,12 +659,12 @@ process_common_toolchain() { | ||
15 | if enabled iwmmxt || enabled iwmmxt2 | ||
16 | then | ||
17 | check_add_asflags -mcpu=${tgt_isa} | ||
18 | elif enabled armv7 | ||
19 | then | ||
20 | - check_add_cflags -march=armv7-a -mcpu=cortex-a8 -mfpu=neon -mfloat-abi=softfp #-ftree-vectorize | ||
21 | - check_add_asflags -mcpu=cortex-a8 -mfpu=neon -mfloat-abi=softfp #-march=armv7-a | ||
22 | + check_add_cflags -march=armv7-a -mcpu=cortex-a8 -mfpu=neon #-ftree-vectorize | ||
23 | + check_add_asflags -mcpu=cortex-a8 -mfpu=neon #-march=armv7-a | ||
24 | else | ||
25 | check_add_cflags -march=${tgt_isa} | ||
26 | check_add_asflags -march=${tgt_isa} | ||
27 | fi | ||
28 | |||
diff --git a/meta-oe/recipes-multimedia/webm/libvpx_0.9.5.bb b/meta-oe/recipes-multimedia/webm/libvpx_0.9.5.bb index 223652489..878d5e25e 100644 --- a/meta-oe/recipes-multimedia/webm/libvpx_0.9.5.bb +++ b/meta-oe/recipes-multimedia/webm/libvpx_0.9.5.bb | |||
@@ -5,6 +5,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=6e8dee932c26f2dab503abf70c96d8bb" | |||
5 | PR = "${INC_PR}.0" | 5 | PR = "${INC_PR}.0" |
6 | 6 | ||
7 | SRC_URI += "file://libvpx-configure-support-blank-prefix.patch \ | 7 | SRC_URI += "file://libvpx-configure-support-blank-prefix.patch \ |
8 | file://do-not-hardcode-softfp-float-api.patch \ | ||
8 | file://CVE-2010-4203.patch \ | 9 | file://CVE-2010-4203.patch \ |
9 | " | 10 | " |
10 | 11 | ||