commit | decd2064607d74106dc176bfd04a4f4a4e584eba | [log] [tgz] |
---|---|---|
author | Seppo Ingalsuo <seppo.ingalsuo@linux.intel.com> | Wed Nov 13 11:05:14 2019 +0200 |
committer | Liam Girdwood <lgirdwood@gmail.com> | Wed Nov 13 14:48:42 2019 +0000 |
tree | e98b9e043b6fd5907ae20a2811d4095c9d28e23a | |
parent | 835d876b905e61977144eb0adff2a4130b047068 [diff] |
SRC: Fix pointer arithmetic in circular buffer wrap functions The previously used cast of pointer to size_t (unsigned int) has worked but it's horrible way to do it. Cast to uint8_t * should be clean portable code. Signed-off-by: Seppo Ingalsuo <seppo.ingalsuo@linux.intel.com>
See docs
mkdir build && cd build
Baytrail / Cherrytrail:
cmake -DTOOLCHAIN=xtensa-byt-elf -DROOT_DIR=`pwd`/../../xtensa-root/xtensa-byt-elf ..
Haswell / Broadwell:
cmake -DTOOLCHAIN=xtensa-hsw-elf -DROOT_DIR=`pwd`/../../xtensa-root/xtensa-hsw-elf ..
Apollolake:
cmake -DTOOLCHAIN=xtensa-apl-elf -DROOT_DIR=`pwd`/../../xtensa-root/xtensa-apl-elf ..
Cannonlake:
cmake -DTOOLCHAIN=xtensa-cnl-elf -DROOT_DIR=`pwd`/../../xtensa-root/xtensa-cnl-elf ..
Baytrail:
make baytrail_defconfig
Cherrytrail:
make cherrytrail_defconfig
Haswell:
make haswell_defconfig
Broadwell:
make broadwell_defconfig
Apollolake:
make apollolake_defconfig
Cannonlake:
make cannonlake_defconfig
make menuconfig
make bin # or `make bin -j<jobs>` for parallel build
See unit testing documentation
TODO: Add additional notes about how to deploy this on a live system
See Contributing to the Project
This project is licensed under the BSD Clause 3 - see the LICENCE file for details