• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1SpeexDSP has been ported to the Blackfin DSP, for the STAMP development board.
2
3This port has been tested on the STAMP development board and requires the
4toolchain available at http://blackfin.uclinux.org/
5
61/ In order to cross-compile for uClinux from the SpeexDSP tarball:
7
8  ./configure --enable-blackfin-asm --enable-fixed-point --host=bfin-uclinux
9  cd libspeexdsp
10  make
11
12The --enable-blackfin-asm option is not required, but it speeds up Speex by
13approximately a factor of two.
14
152/ In order to cross-compile for uClinux from the SpeexDSP git:
16
17  git clone git://git.xiph.org/speexdsp.git
18  cd speexdsp
19  ./autogen.sh
20  ./configure --enable-blackfin-asm --enable-fixed-point --host=bfin-uclinux
21  cd libspeexdsp
22  make
23