wifi
https://wiki.alpinelinux.org/wiki/Connecting_to_a_wireless_access_point
Portaudio:
download
http://www.portaudio.com/download.html
http://www.portaudio.com/archives/pa_stable_v190600_20161030.tgzconfig portaudio and make
$ ./configure --prefix=$HOME/.programs/portaudio/ --enable-cxx --with-oss --enable-debug-output
$ make
$ make install
lib在lib/.libs/libportaudio.a
AVS sdk
- Download
git clone https://github.com/alexa/avs-device-sdk.git --depth=10 -b v1.12
Build guide can be found at https://github.com/alexa/avs-device-sdk/wiki/Linux-Reference-Guide
patch code to eliminate compiler warning “Missing sentinel in function call”, change the last param of var_args from NULL to nullptr fixes this.
g_object_set(m_pipeline.audioSink, "sync", FALSE, NULL);
->
g_object_set(m_pipeline.audioSink, "sync", FALSE, nullptr);config and make
export a=12345678 |
Sensory/alexa-rpi
git clone https://github.com/Sensory/alexa-rpi.git
OpenBLAS
git clone https://github.com/xianyi/OpenBLAS.git -b v0.3.5 --depth=10
Snowboy
git clone https://github.com/Kitt-AI/snowboy.git
程序的静态库
gcc -c snprintf_chk.c
ar -rcs libmissing.a snprintf_chk.o