If I want to ship PocketSphinx with my mac app, then how will this be possible? I need to get a static library or framework by building it right? Pocketsphinx people have this script for iOS. I thought it will be just a case of modifying the script to work for MacOS. My limited knowledge in the compiler->linker phase is not helping me to so.
Any help is appreciated.
Thank you.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Unix software is compiled on Mac with simple configure && make && make install, as described in README. That will create a static libraries, you do not need any special arguments.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi all,
If I want to ship PocketSphinx with my mac app, then how will this be possible? I need to get a static library or framework by building it right? Pocketsphinx people have this script for iOS. I thought it will be just a case of modifying the script to work for MacOS. My limited knowledge in the compiler->linker phase is not helping me to so.
Any help is appreciated.
Thank you.
Unix software is compiled on Mac with simple configure && make && make install, as described in README. That will create a static libraries, you do not need any special arguments.
Oh.. I did not see your reply. Anyway, I managed to do as you mentioned and got it working. Thanks a lot Nickolay.