diff options
author | Jesse Zhang <sen.zhang@windriver.com> | 2013-06-24 09:44:55 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-06-25 17:43:41 +0100 |
commit | a825781fc822f4630bc29906ca1ca79b8fad4836 (patch) | |
tree | d264e7110d2f4fcf86ad9a620b128a8e0df2645c /meta/recipes-multimedia/gstreamer/gst-ffmpeg-0.10.13 | |
parent | 374b9c37b3310cf2a3373633197ca7ba21f6d1bd (diff) | |
download | openembedded-core-a825781fc822f4630bc29906ca1ca79b8fad4836.tar.gz openembedded-core-a825781fc822f4630bc29906ca1ca79b8fad4836.tar.bz2 openembedded-core-a825781fc822f4630bc29906ca1ca79b8fad4836.zip |
gst-ffmpeg: fix libav config error for ppc
Pass --cpu to libav config when we're building ppc, or else there are
errors like:
You need a compiler that supports {} in AltiVec vector declarations.
Also patch libav configure to have knowledge of more ppc CPUs.
Signed-off-by: Jesse Zhang <sen.zhang@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'meta/recipes-multimedia/gstreamer/gst-ffmpeg-0.10.13')
-rw-r--r-- | meta/recipes-multimedia/gstreamer/gst-ffmpeg-0.10.13/libav_e5500.patch | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/meta/recipes-multimedia/gstreamer/gst-ffmpeg-0.10.13/libav_e5500.patch b/meta/recipes-multimedia/gstreamer/gst-ffmpeg-0.10.13/libav_e5500.patch new file mode 100644 index 0000000000..d9ea2c29e0 --- /dev/null +++ b/meta/recipes-multimedia/gstreamer/gst-ffmpeg-0.10.13/libav_e5500.patch @@ -0,0 +1,19 @@ +libav: Add configs for ppc e5500 + +Upstream-Status: Pending + +Signed-off-by: Jesse Zhang <sen.zhang@windriver.com> + +--- gst-ffmpeg-0.10.13/gst-libs/ext/libav/configure 2013-06-20 05:18:36.073104964 -0400 ++++ gst-ffmpeg-0.10.13/gst-libs/ext/libav/configure 2013-06-20 05:18:38.269104150 -0400 +@@ -2222,6 +2222,10 @@ + cpuflags="-mcpu=8540 -mhard-float" + disable altivec + ;; ++ e5500) ++ cpuflags="-mcpu=e5500 -mhard-float" ++ disable altivec ++ ;; + esac + + elif enabled x86; then |