Hi everyone, Im trying to write a bitbake recipe for crossbuilding ffmpeg2.1.1 for arm (Colibri-t20), i wrote this simple recipe:
SRC_URI = "https://www.ffmpeg.org/releases/ffmpeg-2.1.1.tar.gz" SRC_URI[md5sum] = "294749b2ebdd22ef7d9b9d12a70d5b8c" SRC_URI[sha256sum] = "66f521dffefcbb6c09a402f6373e6cef81fbf4284d0a33cdef9a19412df1dd18" inherit autotools pkgconfig DEPENDS = "yasm-native libsdl libx11 zlib libtheora libogg libass libtool" S="${WORKDIR}/ffmpeg-2.1.1" inherit autotools pkgconfig CROSS_COMPILE = "/home/rick/oe-core/build/out-eglibc/sysroots/i686-linux/usr/bin/armv7ahf-vfp-angstrom-linux-gnueabi/arm-angstrom-linux-gnueabi-" EXTRA_OECONF = "--arch=arm --enable-cross-compile --cross-prefix=${CROSS_COMPILE} --target-os=linux --enable-gpl --enable-libtheora --enable-libvorbis --extra-libs="-ldl" --enable-ffplay --enable-shared --enable-pic" do_configure() { ./configure ${EXTRA_OECONF} } My problem is that ffmpeg ffprobe and ffserver are built but not ffplay. Can someone help me with that? Regards Ricko -- View this message in context: http://ffmpeg-users.933282.n4.nabble.com/Issue-Crossbuilding-ffplay-with-openembedded-tp4666284.html Sent from the FFmpeg-users mailing list archive at Nabble.com. _______________________________________________ ffmpeg-user mailing list [email protected] http://ffmpeg.org/mailman/listinfo/ffmpeg-user
