Apologies if this is a stupid question - I'm usually a Windows dev, and I'm not really used to developing on OS X at all.
I'm needing to compile PocketSphinx and SphinxBase to .dylibs to use with DLLImport in a cross platform application built using C# and Mono. I've already had that much working for a while, using older versions of the dlls/dylibs, but I now need to update these to the latest versions. I can build the .DLLs just fine on Windows, but I'm having trouble with getting the .dylibs.
I've followed the guide to compiling on Unix-likes here: http://cmusphinx.sourceforge.net/wiki/tutorialpocketsphinx, and I've managed to build and install everything successfully, as I can run pocketsphinx_continuous with no problems. I'm just at a loss as to how to get the specific files I need, and I can't seem to turn up much info on Google.
Any ideas?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Apologies if this is a stupid question - I'm usually a Windows dev, and I'm not really used to developing on OS X at all.
I'm needing to compile PocketSphinx and SphinxBase to .dylibs to use with DLLImport in a cross platform application built using C# and Mono. I've already had that much working for a while, using older versions of the dlls/dylibs, but I now need to update these to the latest versions. I can build the .DLLs just fine on Windows, but I'm having trouble with getting the .dylibs.
I've followed the guide to compiling on Unix-likes here: http://cmusphinx.sourceforge.net/wiki/tutorialpocketsphinx, and I've managed to build and install everything successfully, as I can run pocketsphinx_continuous with no problems. I'm just at a loss as to how to get the specific files I need, and I can't seem to turn up much info on Google.
Any ideas?
When you run
./configure && make && sudo make install
libraries are installed in /usr/local/lib folder.Aha, yep - found them. Knew it would be something simple I'd failed to notice! Thanks a lot!