alexa-pi / AlexaPiDEPRECATED

DEPRECATED - Use https://github.com/alexa-pi/AlexaPi instead ...Turn a Raspberry Pi into an Alexa Client
https://github.com/alexa-pi/AlexaPi
MIT License
587 stars 439 forks source link

Connection Error #115

Closed RobertSE closed 8 years ago

RobertSE commented 8 years ago

Hi,

Having setup the project on the same 2015-11-21 Jessie Img on a RPi 2. I get repeat error messages on the alexa.log "Checking Internet Connection Connection Failed"

However I am connected to the internet (and can browse), what might be causing this issue?

I ran ./setup.sh provided the profile details, pointed my browser to http://localhost:5000, signed in, received the refresh token. At which point I ^C the ./setup.sh command and rebooted the pi.

Have I done something wrong during setup?

Thanks.

shawpbx commented 8 years ago

Hello All, I pointed my browser to http://localhost:5000 and get an error from Amazom.

root@raspberrypi:~/AlexaPi# python auth_web.py [25/Aug/2016:18:52:50] ENGINE Listening for SIGHUP. [25/Aug/2016:18:52:50] ENGINE Listening for SIGTERM. [25/Aug/2016:18:52:50] ENGINE Listening for SIGUSR1. [25/Aug/2016:18:52:50] ENGINE Bus STARTING CherryPy Checker: The Application mounted at '' has an empty config.

[25/Aug/2016:18:52:50] ENGINE Started monitor thread 'Autoreloader'. [25/Aug/2016:18:52:50] ENGINE Started monitor thread '_TimeoutMonitor'. [25/Aug/2016:18:52:50] ENGINE Serving on http://0.0.0.0:5000 [25/Aug/2016:18:52:50] ENGINE Bus STARTED 192.168.11.10 - - [25/Aug/2016:18:52:55] "GET / HTTP/1.1" 303 764 "" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36"

We're sorry! An error occurred when we tried to process your request. Rest assured, we're already working on the problem and expect to resolve it shortly.

Hide Details Error Summary 400 Bad Request The redirect URI you provided has not been whitelisted for your application. Please add your redirect URI in the 'Allowed Return URLs' section under 'Web Settings' for your Security Profile on Amazon Developer Portal. Request Details scope=alexa%3Aall redirect_uri=http%3A%2F%2F192.168.11.252%3A5000%2Fcode response_type=code client_id=amzn1.application-oa2-

Thanks

maso27 commented 8 years ago

Have you configured the web settings at developer.amazon.com?

Allowed Origins: http://xx.xx.xx.xx:5000 Allowed Return URLS: http://xx.xx.xx.xx:5000/code

...where xx.xx.xx.xx is your IP address

shawpbx commented 8 years ago

Yes Thank you. I didn't add the word "code" to the allow return. But after I obtain authorization from Amazon and saying to reboot the script keeps running. If I stop the script and reboot and run python main.py. I get errors.

root@raspberrypi:~/AlexaPi# python main.py Traceback (most recent call last): File "main.py", line 25, in import webrtcvad ImportError: No module named webrtcvad

I'm using maso27 / AlexaPi git clone --branch version1.2 https://github.com/maso27/AlexaPi.git

This is for my daughter's 4th grade science project.. I hope. :)

Thanks, David

5.56X45=

Thanks, David

On Thu, Aug 25, 2016 at 12:40 PM, Mason Stone notifications@github.com wrote:

Have you configured the web settings at developer.amazon.com?

Allowed Origins: http://xx.xx.xx.xx:5000 Allowed Return URLS: http://xx.xx.xx.xx:5000/code

...where xx.xx.xx.xx is your IP address

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/sammachin/AlexaPi/issues/115#issuecomment-242511834, or mute the thread https://github.com/notifications/unsubscribe-auth/AUQ3DG27dJ5_Hqy35qWA9mpVZFVsdTLXks5qje-jgaJpZM4JeQm5 .

maso27 commented 8 years ago

@shawpbx Have you run setup.sh to install everything, or did you run auth_web.py on its own?

Based on the fact that you used port 5000 above instead of 5050, (and that it worked), I'm guessing you've got files from a couple different sources. The version of auth_web.py that's at my 1.2 branch requires port 5050 so it doesn't collide with shairport-sync.

If you haven't, run the setup.sh from that branch. It will install the necessary packages.

And I hope your daughter learns a ton!

shawpbx commented 8 years ago

Thanks, she is loving very minute on the RasPi.

Quick Note. I start with a clean 2016-05-27-rasbian-jessie. I login as pi and changed root password. Then su to root. change to /root dir. I run git clone --branch version1.2 https://github.com/maso27/AlexaPi.git then cd to Alexa. run ./setup. I enter the Amazon questions. Then it asked me to go to http://xxx:5050. I connect to the webpage and get the "Success! Refresh token has been added to your creds file, you may now reboot the Pi" But the script doesn't stop. Should I kill the script "CTRL C" or wait??

./setup.sh --Creating creds.py-- Enter your Device Type ID: AlexaPi Enter your Security Profile Description: AlexaPi Enter your Security Profile ID: amzn1.application.161fdb949b4f4733axxxxxxxxxxxxxxx Enter your Client ID: amzn1.application-oa2-client.51c31f1xxxxxxxxxxxxxxxxxxxxxxxx Enter your Client Secret: a73462cbfa8344021a0f831e77033a6xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Ready goto http://192.168.11.252:5050 or http://localhost:5050 to begin the auth process

Thanks agian for your time.

David

5.56X45=

Thanks, David

On Fri, Aug 26, 2016 at 7:48 AM, Mason Stone notifications@github.com wrote:

@shawpbx https://github.com/shawpbx Have you run setup.sh to install everything, or did you run auth_web.py on its own?

Based on the fact that you used port 5000 above instead of 5050, (and that it worked), I'm guessing you've got files from a couple different sources. The version of auth_web.py that's at my 1.2 branch requires port 5050 so it doesn't collide with shairport-sync.

If you haven't, run the setup.sh from that branch. It will install the necessary packages.

And I hope your daughter learns a ton!

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/sammachin/AlexaPi/issues/115#issuecomment-242756552, or mute the thread https://github.com/notifications/unsubscribe-auth/AUQ3DAAiw230QJkapJjdu_jiqBvTmA-iks5qjvzDgaJpZM4JeQm5 .

maso27 commented 8 years ago

Yes, Ctrl-C to exit. That script never stops. (Hmmm. Maybe a note about that would be helpful?)

Sounds like you're nearly there! Next step: figuring out audio devices.

illperipherals commented 8 years ago

Isn't that always the fun part? ;)

shawpbx commented 8 years ago

She is 9y/o and has built a RasPBX phone system for her class. The kids love playing with it. We added app-rpt and two frs radios to the system. I know the Pi's are only 35 bucks but its adding up fast. :)

David

5.56X45=

Thanks, David

On Fri, Aug 26, 2016 at 10:35 AM, tteague notifications@github.com wrote:

Isn't that always the fun part? ;)

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/sammachin/AlexaPi/issues/115#issuecomment-242800387, or mute the thread https://github.com/notifications/unsubscribe-auth/AUQ3DHeBM3dZfuCpWHn1EFb1PXRCbMGKks5qjyPvgaJpZM4JeQm5 .

shawpbx commented 8 years ago

Here is the log after a fresh install and reboot.

root@raspberrypi:~ $ cat /var/log/alexa.log Starting Alexa in silent mode... Traceback (most recent call last): File "/root/AlexaPi/main.py", line 25, in import webrtcvad ImportError: No module named webrtcvad

David

5.56X45=

Thanks, David

On Fri, Aug 26, 2016 at 7:48 AM, Mason Stone notifications@github.com wrote:

@shawpbx https://github.com/shawpbx Have you run setup.sh to install everything, or did you run auth_web.py on its own?

Based on the fact that you used port 5000 above instead of 5050, (and that it worked), I'm guessing you've got files from a couple different sources. The version of auth_web.py that's at my 1.2 branch requires port 5050 so it doesn't collide with shairport-sync.

If you haven't, run the setup.sh from that branch. It will install the necessary packages.

And I hope your daughter learns a ton!

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/sammachin/AlexaPi/issues/115#issuecomment-242756552, or mute the thread https://github.com/notifications/unsubscribe-auth/AUQ3DAAiw230QJkapJjdu_jiqBvTmA-iks5qjvzDgaJpZM4JeQm5 .

maso27 commented 8 years ago

Strange. @jaydev1997 was seeing this same issue yesterday too.

Try pip install webrtcvad and tell me if there's a new error when you run main.py

shawpbx commented 8 years ago

So I installed pip install webrtcvad and ran python main.py.

Successfully installed webrtcvad Cleaning up... root@raspberrypi:~/AlexaPi# python main.py Traceback (most recent call last): File "main.py", line 27, in from pocketsphinx.pocketsphinx import File "/usr/local/lib/python2.7/dist-packages/pocketsphinx/init.py", line 37, in from pocketsphinx import File "/usr/local/lib/python2.7/dist-packages/pocketsphinx/pocketsphinx.py", line 42, in _pocketsphinx = swig_import_helper() File "/usr/local/lib/python2.7/dist-packages/pocketsphinx/pocketsphinx.py", line 38, in swig_import_helper _mod = imp.load_module('_pocketsphinx', fp, pathname, description) ImportError: libpocketsphinx.so.3: cannot open shared object file: No such file or directory

After reboot

pi@raspberrypi:~ $ cat /var/log/alexa.log Starting Alexa in silent mode... Traceback (most recent call last): File "/root/AlexaPi/main.py", line 27, in from pocketsphinx.pocketsphinx import File "/usr/local/lib/python2.7/dist-packages/pocketsphinx/init.py", line 37, in from pocketsphinx import File "/usr/local/lib/python2.7/dist-packages/pocketsphinx/pocketsphinx.py", line 42, in _pocketsphinx = swig_import_helper() File "/usr/local/lib/python2.7/dist-packages/pocketsphinx/pocketsphinx.py", line 38, in swig_import_helper _mod = imp.load_module('_pocketsphinx', fp, pathname, description) ImportError: libpocketsphinx.so.3: cannot open shared object file: No such file or directory

Thanks, David

5.56X45=

Thanks, David

On Fri, Aug 26, 2016 at 12:26 PM, Mason Stone notifications@github.com wrote:

Strange. @jaydev1997 https://github.com/jaydev1997 was seeing this same issue yesterday too.

Try pip install webrtcvad and tell me if there's a new error when you run main.py

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/sammachin/AlexaPi/issues/115#issuecomment-242828903, or mute the thread https://github.com/notifications/unsubscribe-auth/AUQ3DFVPqEeX7EyuPSITxZ6CZIRa-pfkks5qjz33gaJpZM4JeQm5 .

maso27 commented 8 years ago

Edit: nevermind.

I took those packages out on purpose.

@shawpbx, two questions: 1.) do you have a directory called /root/pocketsphinx? 2.) what happens if you go into /root/AlexaPi and type pip install -r requirements.txt? Any errors?

maso27 commented 8 years ago

@shawpbx I have another idea.

Have you run raspi-config to expand the raspberry pi image to fill the SD card?

Type df -h and see if you've run out of space.

shawpbx commented 8 years ago

Looks like I have 3.0G left.

pi@raspberrypi:~ $ df -h Filesystem Size Used Avail Use% Mounted on /dev/root 7.2G 3.9G 3.0G 57% / devtmpfs 459M 0 459M 0% /dev tmpfs 463M 0 463M 0% /dev/shm tmpfs 463M 6.3M 457M 2% /run tmpfs 5.0M 4.0K 5.0M 1% /run/lock tmpfs 463M 0 463M 0% /sys/fs/cgroup /dev/mmcblk0p1 63M 21M 43M 33% /boot tmpfs 93M 0 93M 0% /run/user/1000

5.56X45=

Thanks, David

On Sat, Aug 27, 2016 at 7:01 AM, Mason Stone notifications@github.com wrote:

@shawpbx https://github.com/shawpbx I have another idea.

Have you run raspi-config to expand the raspberry pi image to fill the SD card?

Type df -h and see if you've run out of space.

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/sammachin/AlexaPi/issues/115#issuecomment-242918845, or mute the thread https://github.com/notifications/unsubscribe-auth/AUQ3DOqFxWWkUuiY7-0pilyuLh5aoKVmks5qkEMigaJpZM4JeQm5 .

shawpbx commented 8 years ago

I ran ./setup and saved the output to a file (see attachment). Looks like pocketsphinx didn't install. I installed using apt-get install pocketsphinx. re-ran python main.py. I get a new error. So I did a reboot and Alexa works.

root@raspberrypi:~/AlexaPi# python main.py Checking Internet Connection... Connection OK Traceback (most recent call last): File "main.py", line 592, in start() File "main.py", line 515, in start inp = alsaaudio.PCM(alsaaudio.PCM_CAPTURE, alsaaudio.PCM_NORMAL, device) alsaaudio.ALSAAudioError: Device or resource busy [plughw:1]

If you want me to do a fresh OS install and test a new version for you please let me know. Thank you for all your help. You got us pointed in the right direction.

Thanks, David

5.56X45=

Thanks, David

On Sat, Aug 27, 2016 at 7:01 AM, Mason Stone notifications@github.com wrote:

@shawpbx https://github.com/shawpbx I have another idea.

Have you run raspi-config to expand the raspberry pi image to fill the SD card?

Type df -h and see if you've run out of space.

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/sammachin/AlexaPi/issues/115#issuecomment-242918845, or mute the thread https://github.com/notifications/unsubscribe-auth/AUQ3DOqFxWWkUuiY7-0pilyuLh5aoKVmks5qkEMigaJpZM4JeQm5 .

shairport-sync (Airplay) WILL be installed. monitoring WILL be installed. Hit http://archive.raspberrypi.org jessie InRelease Get:1 http://mirrordirector.raspbian.org jessie InRelease [14.9 kB] Hit http://archive.raspberrypi.org jessie/main armhf Packages Get:2 http://mirrordirector.raspbian.org jessie/main armhf Packages [8,981 kB] Hit http://archive.raspberrypi.org jessie/ui armhf Packages Ign http://archive.raspberrypi.org jessie/main Translation-en_GB Ign http://archive.raspberrypi.org jessie/main Translation-en Ign http://archive.raspberrypi.org jessie/ui Translation-en_GB Ign http://archive.raspberrypi.org jessie/ui Translation-en Get:3 http://mirrordirector.raspbian.org jessie/contrib armhf Packages [37.5 kB] Get:4 http://mirrordirector.raspbian.org jessie/non-free armhf Packages [70.3 kB] Get:5 http://mirrordirector.raspbian.org jessie/rpi armhf Packages [1,356 B] Ign http://mirrordirector.raspbian.org jessie/contrib Translation-en_GB Ign http://mirrordirector.raspbian.org jessie/contrib Translation-en Ign http://mirrordirector.raspbian.org jessie/main Translation-en_GB Ign http://mirrordirector.raspbian.org jessie/main Translation-en Ign http://mirrordirector.raspbian.org jessie/non-free Translation-en_GB Ign http://mirrordirector.raspbian.org jessie/non-free Translation-en Ign http://mirrordirector.raspbian.org jessie/rpi Translation-en_GB Ign http://mirrordirector.raspbian.org jessie/rpi Translation-en Fetched 9,105 kB in 28s (324 kB/s) Reading package lists... Reading package lists... Building dependency tree... Reading state information... git is already the newest version. wget is already the newest version. 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. --copying pocketsphinx-- Reading package lists... Building dependency tree... Reading state information... memcached is already the newest version. python-alsaaudio is already the newest version. python-dev is already the newest version. python-pip is already the newest version. swig is already the newest version. vlc is already the newest version. libasound2-dev is already the newest version. 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. Requirement already satisfied (use --upgrade to upgrade): Wave>=0.0.2 in /usr/local/lib/python2.7/dist-packages (from -r requirements.txt (line 1)) Requirement already satisfied (use --upgrade to upgrade): python-memcached>=1.50 in /usr/local/lib/python2.7/dist-packages (from -r requirements.txt (line 2)) Requirement already satisfied (use --upgrade to upgrade): requests>=2.4.3 in /usr/lib/python2.7/dist-packages (from -r requirements.txt (line 3)) Requirement already satisfied (use --upgrade to upgrade): wsgiref>=0.1.2 in /usr/lib/python2.7 (from -r requirements.txt (line 4)) Requirement already satisfied (use --upgrade to upgrade): CherryPy>=4.0.0 in /usr/local/lib/python2.7/dist-packages (from -r requirements.txt (line 5)) Requirement already satisfied (use --upgrade to upgrade): python-vlc>=1.1.2 in /usr/local/lib/python2.7/dist-packages (from -r requirements.txt (line 6)) Requirement already satisfied (use --upgrade to upgrade): pyalsaaudio>=0.8.2 in /usr/local/lib/python2.7/dist-packages (from -r requirements.txt (line 7)) Requirement already satisfied (use --upgrade to upgrade): py-getch>=1.0.1 in /usr/local/lib/python2.7/dist-packages (from -r requirements.txt (line 8)) Downloading/unpacking pocketsphinx>=0.1.0 (from -r requirements.txt (line 9)) Running setup.py (path:/tmp/pip-build-7LoCUw/pocketsphinx/setup.py) egg_info for package pocketsphinx

no previously-included directories found matching 'deps/sphinxbase/include/wince'
no previously-included directories found matching 'deps/sphinxbase/src/sphinx_adtools'
no previously-included directories found matching 'deps/sphinxbase/src/sphinx_cepview'
no previously-included directories found matching 'deps/sphinxbase/src/sphinx_fe'
no previously-included directories found matching 'deps/sphinxbase/src/sphinx_jsgf2fsg'
no previously-included directories found matching 'deps/sphinxbase/src/sphinx_lmtools'
no previously-included directories found matching 'deps/pocketsphinx/src/gst-plugin'
no previously-included directories found matching 'deps/pocketsphinx/src/programs'
no previously-included directories found matching 'swig/sphinxbase/sphinxbase_wrap.c'

Requirement already satisfied (use --upgrade to upgrade): webrtcvad>=2.0.7 in /usr/local/lib/python2.7/dist-packages (from -r requirements.txt (line 10)) Requirement already satisfied (use --upgrade to upgrade): six>=1.4.0 in /usr/lib/python2.7/dist-packages (from python-memcached>=1.50->-r requirements.txt (line 2)) Installing collected packages: pocketsphinx Running setup.py install for pocketsphinx building 'sphinxbase._sphinxbase' extension swigging swig/sphinxbase/sphinxbase.i to swig/sphinxbase/sphinxbase_wrap.c swig -python -modern -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/swig -outdir sphinxbase -o swig/sphinxbase/sphinxbase_wrap.c swig/sphinxbase/sphinxbase.i arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxbase/lm/ngram_model_set.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/lm/ngram_model_set.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxbase/lm/jsgf_scanner.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/lm/jsgf_scanner.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxbase/lm/jsgf.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/lm/jsgf.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxbase/lm/fsg_model.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/lm/fsg_model.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxbase/lm/ngram_model_trie.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/lm/ngram_model_trie.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxbase/lm/lm_trie_quant.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/lm/lm_trie_quant.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxbase/lm/jsgf_parser.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/lm/jsgf_parser.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxbase/lm/ngram_model.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/lm/ngram_model.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxbase/lm/lm_trie.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/lm/lm_trie.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxbase/lm/ngrams_raw.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/lm/ngrams_raw.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxbase/feat/cmn_live.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/feat/cmn_live.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxbase/feat/lda.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/feat/lda.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxbase/feat/agc.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/feat/agc.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxbase/feat/feat.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/feat/feat.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxbase/feat/cmn.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/feat/cmn.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxbase/util/priority_queue.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/util/priority_queue.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxbase/util/errno.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/util/errno.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxbase/util/genrand.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/util/genrand.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxbase/util/f2c_lite.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/util/f2c_lite.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxbase/util/heap.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/util/heap.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxbase/util/hash_table.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/util/hash_table.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxbase/util/filename.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/util/filename.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxbase/util/listelem_alloc.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/util/listelem_alloc.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxbase/util/pio.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/util/pio.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxbase/util/dtoa.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/util/dtoa.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxbase/util/bitvec.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/util/bitvec.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxbase/util/bitarr.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/util/bitarr.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxbase/util/glist.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/util/glist.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxbase/util/case.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/util/case.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxbase/util/cmd_ln.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/util/cmd_ln.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxbase/util/profile.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/util/profile.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxbase/util/sbthread.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/util/sbthread.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxbase/util/ckd_alloc.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/util/ckd_alloc.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxbase/util/bio.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/util/bio.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxbase/util/logmath.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/util/logmath.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxbase/util/blas_lite.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/util/blas_lite.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxbase/util/matrix.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/util/matrix.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxbase/util/slamch.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/util/slamch.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxbase/util/strfuncs.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/util/strfuncs.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxbase/util/mmio.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/util/mmio.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxbase/util/err.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/util/err.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxbase/util/slapack_lite.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/util/slapack_lite.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxbase/fe/fixlog.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/fe/fixlog.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxbase/fe/fe_warp.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/fe/fe_warp.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxbase/fe/fe_interface.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/fe/fe_interface.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxbase/fe/fe_warp_affine.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/fe/fe_warp_affine.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxbase/fe/fe_prespch_buf.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/fe/fe_prespch_buf.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxbase/fe/fe_warp_piecewise_linear.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/fe/fe_warp_piecewise_linear.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxbase/fe/fe_noise.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/fe/fe_noise.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxbase/fe/yin.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/fe/yin.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxbase/fe/fe_sigproc.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/fe/fe_sigproc.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxbase/fe/fe_warp_inverse_linear.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/fe/fe_warp_inverse_linear.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c swig/sphinxbase/sphinxbase_wrap.c -o build/temp.linux-armv7l-2.7/swig/sphinxbase/sphinxbase_wrap.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare In file included from deps/sphinxbase/include/sphinxbase/prim_type.h:88:0, from deps/sphinxbase/include/sphinxbase/cmd_ln.h:66, from swig/sphinxbase/sphinxbase_wrap.c:21: deps/sphinxbase/include/android/sphinx_config.h:11:0: warning: "SIZEOF_LONG" redefined

define SIZEOF_LONG 8

 ^
In file included from /usr/include/python2.7/pyconfig.h:13:0,
                 from /usr/include/python2.7/Python.h:8,
                 from swig/sphinxbase/sphinxbase_wrap.c:11:
/usr/include/arm-linux-gnueabihf/python2.7/pyconfig.h:1013:0: note: this is the location of the previous definition
 #define SIZEOF_LONG 4
 ^
swig/sphinxbase/sphinxbase_wrap.c: In function ‘_wrap_new_LogMath’:
swig/sphinxbase/sphinxbase_wrap.c:5548:9: warning: ‘argv[0]’ may be used uninitialized in this function [-Wmaybe-uninitialized]
     int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_logmath_t, 0);
         ^
arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxad/ad_pulse.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxad/ad_pulse.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare
deps/sphinxbase/src/libsphinxad/ad_pulse.c:44:30: fatal error: pulse/pulseaudio.h: No such file or directory
 #include <pulse/pulseaudio.h>
                              ^
compilation terminated.
error: command 'arm-linux-gnueabihf-gcc' failed with exit status 1
Complete output from command /usr/bin/python -c "import setuptools, tokenize;__file__='/tmp/pip-build-7LoCUw/pocketsphinx/setup.py';exec(compile(getattr(tokenize, 'open', open)(**file**).read().replace('\r\n', '\n'), **file**, 'exec'))" install --record /tmp/pip-i88Yek-record/install-record.txt --single-version-externally-managed --compile:
running install

running build

running build_py

creating build

creating build/lib.linux-armv7l-2.7

creating build/lib.linux-armv7l-2.7/sphinxbase

copying sphinxbase/init.py -> build/lib.linux-armv7l-2.7/sphinxbase

copying sphinxbase/sphinxbase.py -> build/lib.linux-armv7l-2.7/sphinxbase

creating build/lib.linux-armv7l-2.7/pocketsphinx

copying pocketsphinx/init.py -> build/lib.linux-armv7l-2.7/pocketsphinx

copying pocketsphinx/pocketsphinx.py -> build/lib.linux-armv7l-2.7/pocketsphinx

running build_ext

building 'sphinxbase._sphinxbase' extension

swigging swig/sphinxbase/sphinxbase.i to swig/sphinxbase/sphinxbase_wrap.c

swig -python -modern -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/swig -outdir sphinxbase -o swig/sphinxbase/sphinxbase_wrap.c swig/sphinxbase/sphinxbase.i

creating build/temp.linux-armv7l-2.7

creating build/temp.linux-armv7l-2.7/deps

creating build/temp.linux-armv7l-2.7/deps/sphinxbase

creating build/temp.linux-armv7l-2.7/deps/sphinxbase/src

creating build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase

creating build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/lm

creating build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/feat

creating build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/util

creating build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/fe

creating build/temp.linux-armv7l-2.7/swig

creating build/temp.linux-armv7l-2.7/swig/sphinxbase

creating build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxad

arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxbase/lm/ngram_model_set.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/lm/ngram_model_set.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare

arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxbase/lm/jsgf_scanner.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/lm/jsgf_scanner.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare

arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxbase/lm/jsgf.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/lm/jsgf.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare

arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxbase/lm/fsg_model.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/lm/fsg_model.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare

arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxbase/lm/ngram_model_trie.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/lm/ngram_model_trie.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare

arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxbase/lm/lm_trie_quant.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/lm/lm_trie_quant.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare

arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxbase/lm/jsgf_parser.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/lm/jsgf_parser.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare

arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxbase/lm/ngram_model.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/lm/ngram_model.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare

arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxbase/lm/lm_trie.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/lm/lm_trie.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare

arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxbase/lm/ngrams_raw.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/lm/ngrams_raw.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare

arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxbase/feat/cmn_live.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/feat/cmn_live.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare

arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxbase/feat/lda.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/feat/lda.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare

arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxbase/feat/agc.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/feat/agc.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare

arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxbase/feat/feat.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/feat/feat.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare

arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxbase/feat/cmn.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/feat/cmn.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare

arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxbase/util/priority_queue.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/util/priority_queue.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare

arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxbase/util/errno.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/util/errno.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare

arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxbase/util/genrand.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/util/genrand.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare

arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxbase/util/f2c_lite.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/util/f2c_lite.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare

arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxbase/util/heap.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/util/heap.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare

arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxbase/util/hash_table.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/util/hash_table.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare

arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxbase/util/filename.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/util/filename.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare

arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxbase/util/listelem_alloc.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/util/listelem_alloc.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare

arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxbase/util/pio.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/util/pio.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare

arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxbase/util/dtoa.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/util/dtoa.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare

arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxbase/util/bitvec.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/util/bitvec.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare

arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxbase/util/bitarr.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/util/bitarr.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare

arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxbase/util/glist.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/util/glist.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare

arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxbase/util/case.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/util/case.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare

arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxbase/util/cmd_ln.c -o build/temp.linux-armv7l-2.7/deps/sphinxbase/src/libsphinxbase/util/cmd_ln.o -Wno-unused-label -Wno-strict-protot

maso27 commented 8 years ago

Glad you had success! It sounds like pocketsphinx has been moved into the Raspbian repisitory.

When I first started building my branch, I had to build sphinxbase and pocketsphinx from their guthubs, but since then it all moved into pip, and now into apt. I'll have to make an adjustment and see how it goes.

maso27 commented 8 years ago

@shawpbx I've found the problem and fixed the repository. The fix is to apt-get install libpulse-dev before the pip install -r requirements.txt

(I could never get the apt-get install pocketsphinx python-pocketsphinx approach working. If you try this fix, you might have to run apt-get --purge remove pocketsphinx before doing it.)

shawpbx commented 8 years ago

Ok I'll run a fresh OS and give it a try. Let you know later today.

David

5.56X45=

Thanks, David

On Mon, Aug 29, 2016 at 11:04 PM, Mason Stone notifications@github.com wrote:

@shawpbx https://github.com/shawpbx I've found the problem and fixed the repository. The fix is to apt-get install libpulse-dev before the pip install -r requirements.txt

(I could never get the apt-get install pocketsphinx python-pocketsphinx approach working. If you try this fix, you might have to run apt-get --purge remove pocketsphinx before doing it.)

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/sammachin/AlexaPi/issues/115#issuecomment-243341673, or mute the thread https://github.com/notifications/unsubscribe-auth/AUQ3DMhkeWq59Ky4MxCUQPWGPlLAFl6oks5qk8gBgaJpZM4JeQm5 .

renekliment commented 8 years ago

Do you still have issues with this?

shawpbx commented 8 years ago

No, Mason fixed it and should work now. My install is working fine now.

David

Thanks, David

"Laws that forbid the carrying of arms...disarm only those who are neither inclined nor determined to commit crimes. Such laws make things worse for the assaulted and better for the assailants; they serve rather to encourage than prevent homicides, for an unarmed man may be attacked with greater confidence than an armed one."

On Wed, Oct 26, 2016 at 11:38 AM, René Kliment notifications@github.com wrote:

Do you still have issues with this?

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/sammachin/AlexaPi/issues/115#issuecomment-256439108, or mute the thread https://github.com/notifications/unsubscribe-auth/AUQ3DLLZE9EtgOyxxKWgDMd6TQf7eTjTks5q354zgaJpZM4JeQm5 .

renekliment commented 8 years ago

Great! Closing.