From 9a9923084c18eb650791e413e7a937bb69ca4cfd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javier=20Jard=C3=B3n?= Date: Fri, 18 Dec 2015 12:07:55 +0000 Subject: strata/multimedia-common.morph: Add workaround to compile libvpx in ARM Bug report filled upstream here: https://bugs.chromium.org/p/webm/issues/detail?id=1121 Change-Id: Ic4165c3ec2c05234dd10b3c8611b78fa0684760f --- strata/multimedia-common/libvpx.morph | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 strata/multimedia-common/libvpx.morph (limited to 'strata/multimedia-common') diff --git a/strata/multimedia-common/libvpx.morph b/strata/multimedia-common/libvpx.morph new file mode 100644 index 00000000..011642f4 --- /dev/null +++ b/strata/multimedia-common/libvpx.morph @@ -0,0 +1,14 @@ +name: libvpx +kind: chunk +build-system: autotools +configure-commands: +# Workarond upstream bug: https://bugs.chromium.org/p/webm/issues/detail?id=1121 +- | + case "$MORPH_ARCH" in + armv7lhf) + CROSS=" " ./configure --prefix="$PREFIX" --target=armv7-linux-gcc + ;; + *) + ./configure --prefix="$PREFIX" + ;; + esac -- cgit v1.2.1