aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Gall <tom.gall@linaro.org>2013-04-30 14:05:45 -0500
committerTom Gall <tom.gall@linaro.org>2013-06-06 12:51:19 -0500
commit9c130c9bdb9adc7ae907776d81188ff4dd07cd80 (patch)
tree8dc330464e89a531b0d35351f7a1c84b25f9a783
parent17ace92714bccf64d0d9fcefaabe3067f59fdf0a (diff)
fix x264 to build on aarchaarch64
Add X264_DISABLE_ASM_aarch64 = "--disable-asm" to fix build on aarch64.
-rw-r--r--meta-oe/recipes-multimedia/x264/x264_git.bb3
1 files changed, 2 insertions, 1 deletions
diff --git a/meta-oe/recipes-multimedia/x264/x264_git.bb b/meta-oe/recipes-multimedia/x264/x264_git.bb
index 5222d1d4..b7a9b03f 100644
--- a/meta-oe/recipes-multimedia/x264/x264_git.bb
+++ b/meta-oe/recipes-multimedia/x264/x264_git.bb
@@ -22,6 +22,7 @@ inherit lib_package pkgconfig
X264_DISABLE_ASM = ""
X264_DISABLE_ASM_armv4 = "--disable-asm"
X264_DISABLE_ASM_armv5 = "--disable-asm"
+X264_DISABLE_ASM_aarch64 = "--disable-asm"
EXTRA_OECONF = '--prefix=${prefix} \
--host=${HOST_SYS} \
@@ -29,7 +30,7 @@ EXTRA_OECONF = '--prefix=${prefix} \
--sysroot=${STAGING_DIR_TARGET} \
--enable-shared \
--enable-static \
- --disable-lavf \
+ --disable-lavf --enable-pic \
${X264_DISABLE_ASM} \
'