I am building (make) pocketsphinx on Linux (Mint 17.2)
Anyone have an idea of what I can fit it ?
1) I previously have done those steps:
sudo apt-get install gcc automake autoconf libtool bison swig python-dev libpulse-dev
mkdir sphinx
cd sphinx
git clone https://github.com/cmusphinx/sphinxbase...
cd sphinxbase
./autogen.sh
./configure
make clean all
make check
sudo make install
export LD_LIBRARY_PATH=/usr/local/lib
sudo nano /etc/ld.so.conf
include /etc/ld.so.conf.d/*.conf <<< this line was already there
/usr/local/lib <<< added this line
sudo ldconfig
Probably there were errors on sphinxbase installation, you'd better check sphinxbase installation logs and sphinxbase library files in /usr/local/lib if they are actually installed.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Thank you.
Do you know where I can find the "sphinxbase installation logs" ?
What should I see in /usr/local/lib ? Currently, I don't see anything related to sphinx!
Last edit: Esteban Lorantino 2018-10-31
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I am building (make) pocketsphinx on Linux (Mint 17.2)
Anyone have an idea of what I can fit it ?
1) I previously have done those steps:
sudo apt-get install gcc automake autoconf libtool bison swig python-dev libpulse-dev
mkdir sphinx
cd sphinx
git clone https://github.com/cmusphinx/sphinxbase...
cd sphinxbase
./autogen.sh
./configure
make clean all
make check
sudo make install
export LD_LIBRARY_PATH=/usr/local/lib
sudo nano /etc/ld.so.conf
include /etc/ld.so.conf.d/*.conf <<< this line was already there
/usr/local/lib <<< added this line
sudo ldconfig
git clone https://github.com/cmusphinx/pocketsphinx
cd pocketsphinx
./autogen.sh
./configure
make clean all
make check
2) All success until here, then I do:
sudo make install
...and here is the error result :
Probably there were errors on sphinxbase installation, you'd better check sphinxbase installation logs and sphinxbase library files in /usr/local/lib if they are actually installed.
Thank you.
Do you know where I can find the "sphinxbase installation logs" ?
What should I see in /usr/local/lib ? Currently, I don't see anything related to sphinx!
Last edit: Esteban Lorantino 2018-10-31
They are printed on terminal when you run installation
This is a bad sign
Thank you. Now it work: I restarted from scratch and instead of "make clean all" I did just "make"
and now I have something in "/usr/local/lib" !