Go to file
Seppo Ingalsuo d98e6ec4da DMIC: Move ceil_divide from numbers.c to numbers.h as static inline
The DMIC driver needs this function. This inline version is a
bit faster and the change does not increase code size.

Signed-off-by: Seppo Ingalsuo <seppo.ingalsuo@linux.intel.com>
2018-05-17 14:44:38 +01:00
doc dist: fix make dist compiling issue 2018-04-24 08:09:43 -07:00
m4 m4: add ax_check_compile_flag to local m4 directory. 2018-02-08 15:35:43 +00:00
rimage Merge remote-tracking branch 'sof/master' 2018-05-14 15:12:38 +02:00
scripts scripts: remove prefix for host build 2018-05-11 10:11:34 +01:00
src DMIC: Move ceil_divide from numbers.c to numbers.h as static inline 2018-05-17 14:44:38 +01:00
.gitignore Makefile support for doc target. 2018-04-13 14:56:04 +01:00
LICENCE core: initial import of open source DSP firmware 2016-09-22 16:02:43 +01:00
Makefile.am Makefile support for doc target. 2018-04-13 14:56:04 +01:00
README rimage: import rimage image creation and signing tool 2018-02-13 20:29:40 +00:00
autogen.sh sof: add git pre- and post-commit hooks 2018-01-23 21:08:05 +00:00
configure.ac DMIC: Add configure command switch to disable DMIC 2018-05-17 14:20:20 +01:00
version.sh sof: global replacement of 'reef' by 'sof' 2018-04-05 15:10:14 +01:00

README

Build Instructions

1) Run "autogen.sh" 

2) Build and install the rimage ELF image creator and signing tool

./configure --enable-rimage
make
sudo make install

3) 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/

4) make

5) make bin