README.blackfin 691 B

123456789101112131415161718192021
  1. Speex has been ported to the Blackfin DSP, for the STAMP development board.
  2. This port has been tested on the STAMP development board and requires the
  3. toolchain available at http://blackfin.uclinux.org/
  4. 1/ In order to cross-compile for uClinux from the Speex tarball:
  5. ./configure --enable-blackfin-asm --enable-fixed-point --host=bfin-uclinux
  6. cd libspeex
  7. make
  8. The --enable-blackfin-asm option is not required, but it speeds up Speex by
  9. approximately a factor of two.
  10. 2/ In order to cross-compile for uClinux from the Speex Git:
  11. git clone git://git.xiph.org/speex.git
  12. cd speex
  13. ./autogen.sh --enable-blackfin-asm --enable-fixed-point --host=bfin-uclinux
  14. cd libspeex
  15. make