I'm writing a qt application on my desktop which is deployed onto a raspberry pi. I want to use the pocketsphinx & sphinxbase tools/libraries in my application but I don't know how to set up the pocketsphinx libraries for cross compilation. Can anyone instruct me on how this is done?
Thanks.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I'm writing a qt application on my desktop which is deployed onto a raspberry pi. I want to use the pocketsphinx & sphinxbase tools/libraries in my application but I don't know how to set up the pocketsphinx libraries for cross compilation. Can anyone instruct me on how this is done?
Thanks.
You can follow standard automake build process for cross-compilation:
https://www.gnu.org/software/automake/manual/html_node/Cross_002dCompilation.html
https://stackoverflow.com/questions/16573153/cross-compiling-with-automake
Thank you I will try this