Go to file
Seppo Ingalsuo 359af81a8a Audio format: Bug fix for erroneous fractional multiplication macro
Due to misplaced parentheses the computation gives half of correct
result and omits rounding. Currently this macro is not used by code
in SOF git repository. Developers who may use format.h macros should
check their code.

Signed-off-by: Seppo Ingalsuo <seppo.ingalsuo@linux.intel.com>
2018-02-06 16:10:10 +00:00
scripts sof: add git pre- and post-commit hooks 2018-01-23 21:08:05 +00:00
src Audio format: Bug fix for erroneous fractional multiplication macro 2018-02-06 16:10:10 +00:00
.gitignore gitignore: ignore boot loaders and binaries. 2018-01-23 16:15:51 +00:00
LICENCE core: initial import of open source DSP firmware 2016-09-22 16:02:43 +01:00
Makefile.am build: add library build support for host platform 2018-01-27 16:56:10 +00:00
README build: add library build support for host platform 2018-01-27 16:56:10 +00:00
autogen.sh sof: add git pre- and post-commit hooks 2018-01-23 21:08:05 +00:00
build-all.sh build: add library build support for host platform 2018-01-27 16:56:10 +00:00
configure.ac build: add library build support for host platform 2018-01-27 16:56:10 +00:00
version.sh build: fix version script to use correct version in tarball build 2018-01-11 14:58:08 +00:00

README

Build Instructions

1) Run "autogen.sh" 

2) Run the following configure based on your platform.

Baytrail :-

./configure --with-arch=xtensa --with-platform=baytrail --with-root-dir=$PWD/../xtensa-root/xtensa-byt-elf --host=xtensa-byt-elf

Cherrytrail :-

./configure --with-arch=xtensa --with-platform=cherrytrail --with-root-dir=$PWD/../xtensa-root/xtensa-byt-elf --host=xtensa-byt-elf

Library for Host Platform :-
If building library for host platform, run the following configure. Please modify
the --prefix option to choose the directory for installing the library files and
headers

./configure --with-arch=host --enable-library=yes --host=x86_64-unknown-linux-gnu --prefix=$pwd/../host-root/

3) make

4) make bin