aboutsummaryrefslogtreecommitdiff
path: root/README.blackfin
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2018-06-26 16:57:59 -0700
committerElliott Hughes <enh@google.com>2018-06-26 16:57:59 -0700
commitaf8bb9090a206327724f7502db3c089f12d7362a (patch)
tree1c076490cfcfa83c9d29a4f180a0a6edf7ee7564 /README.blackfin
parentf79eb68d06038b070b5d903100302167b3c07626 (diff)
downloadspeex-af8bb9090a206327724f7502db3c089f12d7362a.tar.gz
Update to libspeexdsp 1.2rc3.
Bug: http://b/78011929 Test: builds Change-Id: Idec8b5ec3c6ef876c57ef2e5682e1948e2a95924
Diffstat (limited to 'README.blackfin')
-rw-r--r--README.blackfin22
1 files changed, 22 insertions, 0 deletions
diff --git a/README.blackfin b/README.blackfin
new file mode 100644
index 0000000..4270d21
--- /dev/null
+++ b/README.blackfin
@@ -0,0 +1,22 @@
+SpeexDSP has been ported to the Blackfin DSP, for the STAMP development board.
+
+This port has been tested on the STAMP development board and requires the
+toolchain available at http://blackfin.uclinux.org/
+
+1/ In order to cross-compile for uClinux from the SpeexDSP tarball:
+
+ ./configure --enable-blackfin-asm --enable-fixed-point --host=bfin-uclinux
+ cd libspeexdsp
+ make
+
+The --enable-blackfin-asm option is not required, but it speeds up Speex by
+approximately a factor of two.
+
+2/ In order to cross-compile for uClinux from the SpeexDSP git:
+
+ git clone git://git.xiph.org/speexdsp.git
+ cd speexdsp
+ ./autogen.sh
+ ./configure --enable-blackfin-asm --enable-fixed-point --host=bfin-uclinux
+ cd libspeexdsp
+ make