summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrei Gherzan <andrei@gherzan.ro>2017-04-17 02:13:48 +0100
committerAndrei Gherzan <andrei@gherzan.ro>2017-04-17 02:13:48 +0100
commitfe909cd5b9cb23dabc4f8d3600f5ec6b3e8443c1 (patch)
tree3b968ee9dcf55cf6467282ac18bb28d2d8a237ba
parent1b05ca6bb4167d280fc3e4a7f784d7ef7614e00f (diff)
downloadmeta-raspberrypi-fe909cd5b9cb23dabc4f8d3600f5ec6b3e8443c1.tar.gz
x264: Fix build for armv6 RaspberryPi boards
quant-a.S uses rbit thumb instruction unconditionally even though only from ARMV6T2 this is available (which is not the case for RPI1, RPI0 etc). Avoid this by disabling asm. Signed-off-by: Andrei Gherzan <andrei@resin.io>
-rw-r--r--recipes-multimedia/x264/x264_git.bbappend1
1 files changed, 1 insertions, 0 deletions
diff --git a/recipes-multimedia/x264/x264_git.bbappend b/recipes-multimedia/x264/x264_git.bbappend
new file mode 100644
index 0000000..c1cb3bc
--- /dev/null
+++ b/recipes-multimedia/x264/x264_git.bbappend
@@ -0,0 +1 @@
EXTRA_OECONF_append_raspberrypi = " --disable-asm"