Software

Summary

This section briefly explains how to build FFmpeg for gumstix verdex pro and chumby. For farther information
of these products, please visit the websites of the products.

building_ffmpeg

Caution: In this section, it is assumed that PATH to crosstool is established.

For gumstix verdex pro (2008.07)

# tar xvf ffmpeg-20070525.tar
# cd ffmpeg-20070525/
# ./configure --disable-static --enable-shared --cross-prefix=arm-angstrom-linux-gnueabi- \
  --cross-compile --arch=arm --prefix=/FFMPEG/OUT/DIR
# make
# make install

For Chumby (2008.04)

svn checkout -r 8533 svn://svn.mplayerhq.hu/ffmpeg/trunk ffmpeg
$ cd ffmpeg
$ ./configure --prefix={your_work_DIR} \ 
              --disable-vhook \
              --disable-network \
              --enable-shared \
              --disable-static \
              --enable-memalign-hack \
              --arch=arm \
              --disable-armv5te \
              --disable-armv6 \
              --disable-debug \
              --enable-small \
              --target-os=arm-linux \
              --cross-compile \
              --cross-prefix=arm-unknown-linux-gnu-
$ make
$ make install 

Caution: As the error message, arm-unknown-linux-gnu/bin/Id: cannot find -lavformat, shows up, SWSMAJOR
and SWSVERSION in config.mak are often empty.

SWSMAJOR=0
SWSVERSION=0.5.0

To write down the values, the build process goes through.

Reference


Front page   Edit Freeze Diff Backup Upload Copy Rename Reload   New List of pages Search Recent changes   RSS of recent changes
Last-modified: 2010-08-20 (Fri) 06:05:05 (4997d)