Hello, I have several days trying to use pocketsphinx over Unity on my Linux machine (Ubuntu 18.04), however I have not succeed on it.
Starting from the beginning, I followed the pocketsphinx tutorial, so I cloned the sphinxbase repo and ran ./autogen.sh
followed by ./configure
, make
, sudo make install
, no problems so far, then defined the PATHs to point to the libraries of the sphinxbase doing:
export LD_LIBRARY_PATH=/usr/local/lib
export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig
After that, I downloaded pocketsphinx from this repo, put it next to the sphinxbase folder and compiled it, everything went well so far (installed it also with sudo make install
), so after that, I went to the swig/csharp folder and compiled the test with make
, this was the output
mkdir -p gen
swig -I.. -I../../../sphinxbase/swig -I../include -I../../sphinxbase/include \
-csharp \
-dllimport "libpocketsphinxwrap.so" \
-namespace "Pocketsphinx" -o sphinxbase.c \
-outdir gen ../../../sphinxbase/swig/sphinxbase.i
swig -I.. -I../../../sphinxbase/swig -I../include -I../../sphinxbase/include \
-csharp \
-dllimport "libpocketsphinxwrap.so" \
-namespace "Pocketsphinx" -o pocketsphinx.c \
-outdir gen ../pocketsphinx.i
gcc -fPIC `pkg-config --libs --cflags pocketsphinx` pocketsphinx.c sphinxbase.c -shared -o libpocketsphinxwrap.so
mcs test.cs gen/*.cs
mono test.exe
mono: symbol lookup error: /home/ron/Desktop/pocketsphinx/swig/csharp/libpocketsphinxwrap.so: undefined symbol: ps_args
Makefile:25: recipe for target 'run' failed
make: *** [run] Error 127
At the end of the compilation, it tries to run the test.exe output, but the library claims there is an undefined symbol, but I don't know what I'm missing, all the libraries are being targeted by the LD_LIBRARY_PATH, and pkgconfig. Any hint with this issue?
This is my sphinxbase output when I installed it, It has two warnings but so far everything seems to be ok
Making install in src
make[1]: Entering directory '/home/ron/Desktop/sphinxbase/src'
Making install in libsphinxbase
make[2]: Entering directory '/home/ron/Desktop/sphinxbase/src/libsphinxbase'
Making install in util
make[3]: Entering directory '/home/ron/Desktop/sphinxbase/src/libsphinxbase/util'
make[4]: Entering directory '/home/ron/Desktop/sphinxbase/src/libsphinxbase/util'
make[4]: Nothing to be done for 'install-exec-am'.
make[4]: Nothing to be done for 'install-data-am'.
make[4]: Leaving directory '/home/ron/Desktop/sphinxbase/src/libsphinxbase/util'
make[3]: Leaving directory '/home/ron/Desktop/sphinxbase/src/libsphinxbase/util'
Making install in fe
make[3]: Entering directory '/home/ron/Desktop/sphinxbase/src/libsphinxbase/fe'
make[4]: Entering directory '/home/ron/Desktop/sphinxbase/src/libsphinxbase/fe'
make[4]: Nothing to be done for 'install-exec-am'.
make[4]: Nothing to be done for 'install-data-am'.
make[4]: Leaving directory '/home/ron/Desktop/sphinxbase/src/libsphinxbase/fe'
make[3]: Leaving directory '/home/ron/Desktop/sphinxbase/src/libsphinxbase/fe'
Making install in feat
make[3]: Entering directory '/home/ron/Desktop/sphinxbase/src/libsphinxbase/feat'
make[4]: Entering directory '/home/ron/Desktop/sphinxbase/src/libsphinxbase/feat'
make[4]: Nothing to be done for 'install-exec-am'.
make[4]: Nothing to be done for 'install-data-am'.
make[4]: Leaving directory '/home/ron/Desktop/sphinxbase/src/libsphinxbase/feat'
make[3]: Leaving directory '/home/ron/Desktop/sphinxbase/src/libsphinxbase/feat'
Making install in lm
make[3]: Entering directory '/home/ron/Desktop/sphinxbase/src/libsphinxbase/lm'
make install-am
make[4]: Entering directory '/home/ron/Desktop/sphinxbase/src/libsphinxbase/lm'
make[5]: Entering directory '/home/ron/Desktop/sphinxbase/src/libsphinxbase/lm'
make[5]: Nothing to be done for 'install-exec-am'.
make[5]: Nothing to be done for 'install-data-am'.
make[5]: Leaving directory '/home/ron/Desktop/sphinxbase/src/libsphinxbase/lm'
make[4]: Leaving directory '/home/ron/Desktop/sphinxbase/src/libsphinxbase/lm'
make[3]: Leaving directory '/home/ron/Desktop/sphinxbase/src/libsphinxbase/lm'
make[3]: Entering directory '/home/ron/Desktop/sphinxbase/src/libsphinxbase'
make[4]: Entering directory '/home/ron/Desktop/sphinxbase/src/libsphinxbase'
/bin/mkdir -p '/usr/local/lib'
/bin/bash ../../libtool --mode=install /usr/bin/install -c libsphinxbase.la '/usr/local/lib'
libtool: install: /usr/bin/install -c .libs/libsphinxbase.so.3.0.0 /usr/local/lib/libsphinxbase.so.3.0.0
libtool: install: (cd /usr/local/lib && { ln -s -f libsphinxbase.so.3.0.0 libsphinxbase.so.3 || { rm -f libsphinxbase.so.3 && ln -s libsphinxbase.so.3.0.0 libsphinxbase.so.3; }; })
libtool: install: (cd /usr/local/lib && { ln -s -f libsphinxbase.so.3.0.0 libsphinxbase.so || { rm -f libsphinxbase.so && ln -s libsphinxbase.so.3.0.0 libsphinxbase.so; }; })
libtool: install: /usr/bin/install -c .libs/libsphinxbase.lai /usr/local/lib/libsphinxbase.la
libtool: install: /usr/bin/install -c .libs/libsphinxbase.a /usr/local/lib/libsphinxbase.a
libtool: install: chmod 644 /usr/local/lib/libsphinxbase.a
libtool: install: ranlib /usr/local/lib/libsphinxbase.a
libtool: finish: PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin:/sbin" ldconfig -n /usr/local/lib
----------------------------------------------------------------------
Libraries have been installed in:
/usr/local/lib
If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the '-LLIBDIR'
flag during linking and do at least one of the following:
- add LIBDIR to the 'LD_LIBRARY_PATH' environment variable
during execution
- add LIBDIR to the 'LD_RUN_PATH' environment variable
during linking
- use the '-Wl,-rpath -Wl,LIBDIR' linker flag
- have your system administrator add LIBDIR to '/etc/ld.so.conf'
See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------
make[4]: Nothing to be done for 'install-data-am'.
make[4]: Leaving directory '/home/ron/Desktop/sphinxbase/src/libsphinxbase'
make[3]: Leaving directory '/home/ron/Desktop/sphinxbase/src/libsphinxbase'
make[2]: Leaving directory '/home/ron/Desktop/sphinxbase/src/libsphinxbase'
Making install in libsphinxad
make[2]: Entering directory '/home/ron/Desktop/sphinxbase/src/libsphinxad'
make[3]: Entering directory '/home/ron/Desktop/sphinxbase/src/libsphinxad'
/bin/mkdir -p '/usr/local/lib'
/bin/bash ../../libtool --mode=install /usr/bin/install -c libsphinxad.la '/usr/local/lib'
libtool: warning: relinking 'libsphinxad.la'
libtool: install: (cd /home/ron/Desktop/sphinxbase/src/libsphinxad; /bin/bash "/home/ron/Desktop/sphinxbase/libtool" --tag CC --mode=relink gcc -I../../include/sphinxbase -I../../include -I../../include -g -O2 -Wall -version-info 3:0:0 -o libsphinxad.la -rpath /usr/local/lib ad_pulse.lo ../../src/libsphinxbase/libsphinxbase.la -lpulse -lpulse-simple -lpthread -lm )
libtool: relink: gcc -shared -fPIC -DPIC .libs/ad_pulse.o -L/usr/local/lib -lsphinxbase -lpulse -lpulse-simple -lpthread -lm -g -O2 -Wl,-soname -Wl,libsphinxad.so.3 -o .libs/libsphinxad.so.3.0.0
libtool: install: /usr/bin/install -c .libs/libsphinxad.so.3.0.0T /usr/local/lib/libsphinxad.so.3.0.0
libtool: install: (cd /usr/local/lib && { ln -s -f libsphinxad.so.3.0.0 libsphinxad.so.3 || { rm -f libsphinxad.so.3 && ln -s libsphinxad.so.3.0.0 libsphinxad.so.3; }; })
libtool: install: (cd /usr/local/lib && { ln -s -f libsphinxad.so.3.0.0 libsphinxad.so || { rm -f libsphinxad.so && ln -s libsphinxad.so.3.0.0 libsphinxad.so; }; })
libtool: install: /usr/bin/install -c .libs/libsphinxad.lai /usr/local/lib/libsphinxad.la
libtool: install: /usr/bin/install -c .libs/libsphinxad.a /usr/local/lib/libsphinxad.a
libtool: install: chmod 644 /usr/local/lib/libsphinxad.a
libtool: install: ranlib /usr/local/lib/libsphinxad.a
libtool: finish: PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin:/sbin" ldconfig -n /usr/local/lib
----------------------------------------------------------------------
Libraries have been installed in:
/usr/local/lib
If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the '-LLIBDIR'
flag during linking and do at least one of the following:
- add LIBDIR to the 'LD_LIBRARY_PATH' environment variable
during execution
- add LIBDIR to the 'LD_RUN_PATH' environment variable
during linking
- use the '-Wl,-rpath -Wl,LIBDIR' linker flag
- have your system administrator add LIBDIR to '/etc/ld.so.conf'
See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------
make[3]: Nothing to be done for 'install-data-am'.
make[3]: Leaving directory '/home/ron/Desktop/sphinxbase/src/libsphinxad'
make[2]: Leaving directory '/home/ron/Desktop/sphinxbase/src/libsphinxad'
Making install in sphinx_fe
make[2]: Entering directory '/home/ron/Desktop/sphinxbase/src/sphinx_fe'
make[3]: Entering directory '/home/ron/Desktop/sphinxbase/src/sphinx_fe'
/bin/mkdir -p '/usr/local/bin'
/bin/bash ../../libtool --mode=install /usr/bin/install -c sphinx_fe '/usr/local/bin'
libtool: install: /usr/bin/install -c .libs/sphinx_fe /usr/local/bin/sphinx_fe
make[3]: Nothing to be done for 'install-data-am'.
make[3]: Leaving directory '/home/ron/Desktop/sphinxbase/src/sphinx_fe'
make[2]: Leaving directory '/home/ron/Desktop/sphinxbase/src/sphinx_fe'
Making install in sphinx_cepview
make[2]: Entering directory '/home/ron/Desktop/sphinxbase/src/sphinx_cepview'
make[3]: Entering directory '/home/ron/Desktop/sphinxbase/src/sphinx_cepview'
/bin/mkdir -p '/usr/local/bin'
/bin/bash ../../libtool --mode=install /usr/bin/install -c sphinx_cepview '/usr/local/bin'
libtool: install: /usr/bin/install -c .libs/sphinx_cepview /usr/local/bin/sphinx_cepview
make[3]: Nothing to be done for 'install-data-am'.
make[3]: Leaving directory '/home/ron/Desktop/sphinxbase/src/sphinx_cepview'
make[2]: Leaving directory '/home/ron/Desktop/sphinxbase/src/sphinx_cepview'
Making install in sphinx_jsgf2fsg
make[2]: Entering directory '/home/ron/Desktop/sphinxbase/src/sphinx_jsgf2fsg'
make[3]: Entering directory '/home/ron/Desktop/sphinxbase/src/sphinx_jsgf2fsg'
/bin/mkdir -p '/usr/local/bin'
/bin/bash ../../libtool --mode=install /usr/bin/install -c sphinx_jsgf2fsg '/usr/local/bin'
libtool: install: /usr/bin/install -c .libs/sphinx_jsgf2fsg /usr/local/bin/sphinx_jsgf2fsg
make[3]: Nothing to be done for 'install-data-am'.
make[3]: Leaving directory '/home/ron/Desktop/sphinxbase/src/sphinx_jsgf2fsg'
make[2]: Leaving directory '/home/ron/Desktop/sphinxbase/src/sphinx_jsgf2fsg'
Making install in sphinx_adtools
make[2]: Entering directory '/home/ron/Desktop/sphinxbase/src/sphinx_adtools'
make[3]: Entering directory '/home/ron/Desktop/sphinxbase/src/sphinx_adtools'
/bin/mkdir -p '/usr/local/bin'
/bin/bash ../../libtool --mode=install /usr/bin/install -c sphinx_pitch sphinx_cont_seg '/usr/local/bin'
libtool: install: /usr/bin/install -c .libs/sphinx_pitch /usr/local/bin/sphinx_pitch
libtool: install: /usr/bin/install -c .libs/sphinx_cont_seg /usr/local/bin/sphinx_cont_seg
make[3]: Nothing to be done for 'install-data-am'.
make[3]: Leaving directory '/home/ron/Desktop/sphinxbase/src/sphinx_adtools'
make[2]: Leaving directory '/home/ron/Desktop/sphinxbase/src/sphinx_adtools'
Making install in sphinx_lmtools
make[2]: Entering directory '/home/ron/Desktop/sphinxbase/src/sphinx_lmtools'
make[3]: Entering directory '/home/ron/Desktop/sphinxbase/src/sphinx_lmtools'
/bin/mkdir -p '/usr/local/bin'
/bin/bash ../../libtool --mode=install /usr/bin/install -c sphinx_lm_eval sphinx_lm_convert '/usr/local/bin'
libtool: install: /usr/bin/install -c .libs/sphinx_lm_eval /usr/local/bin/sphinx_lm_eval
libtool: install: /usr/bin/install -c .libs/sphinx_lm_convert /usr/local/bin/sphinx_lm_convert
make[3]: Nothing to be done for 'install-data-am'.
make[3]: Leaving directory '/home/ron/Desktop/sphinxbase/src/sphinx_lmtools'
make[2]: Leaving directory '/home/ron/Desktop/sphinxbase/src/sphinx_lmtools'
make[2]: Entering directory '/home/ron/Desktop/sphinxbase/src'
make[3]: Entering directory '/home/ron/Desktop/sphinxbase/src'
make[3]: Nothing to be done for 'install-exec-am'.
make[3]: Nothing to be done for 'install-data-am'.
make[3]: Leaving directory '/home/ron/Desktop/sphinxbase/src'
make[2]: Leaving directory '/home/ron/Desktop/sphinxbase/src'
make[1]: Leaving directory '/home/ron/Desktop/sphinxbase/src'
Making install in doc
make[1]: Entering directory '/home/ron/Desktop/sphinxbase/doc'
make[2]: Entering directory '/home/ron/Desktop/sphinxbase/doc'
make[2]: Nothing to be done for 'install-exec-am'.
/bin/mkdir -p '/usr/local/share/man/man1'
/usr/bin/install -c -m 644 sphinx_cepview.1 sphinx_cont_seg.1 sphinx_fe.1 sphinx_lm_convert.1 sphinx_lm_eval.1 sphinx_lm_sort.1 sphinx_pitch.1 '/usr/local/share/man/man1'
make[2]: Leaving directory '/home/ron/Desktop/sphinxbase/doc'
make[1]: Leaving directory '/home/ron/Desktop/sphinxbase/doc'
Making install in include
make[1]: Entering directory '/home/ron/Desktop/sphinxbase/include'
Making install in sphinxbase
make[2]: Entering directory '/home/ron/Desktop/sphinxbase/include/sphinxbase'
make[3]: Entering directory '/home/ron/Desktop/sphinxbase/include/sphinxbase'
make[3]: Nothing to be done for 'install-exec-am'.
/bin/mkdir -p '/usr/local/include/sphinxbase'
/usr/bin/install -c -m 644 ad.h agc.h bio.h bitarr.h bitvec.h byteorder.h case.h ckd_alloc.h clapack_lite.h cmd_ln.h cmn.h err.h f2c.h feat.h fe.h filename.h fixpoint.h fsg_model.h genrand.h glist.h hash_table.h heap.h jsgf.h listelem_alloc.h logmath.h matrix.h mmio.h ngram_model.h pio.h yin.h prim_type.h priority_queue.h profile.h sbthread.h sphinxbase_export.h strfuncs.h '/usr/local/include/sphinxbase'
make[3]: Leaving directory '/home/ron/Desktop/sphinxbase/include/sphinxbase'
make[2]: Leaving directory '/home/ron/Desktop/sphinxbase/include/sphinxbase'
make[2]: Entering directory '/home/ron/Desktop/sphinxbase/include'
make[3]: Entering directory '/home/ron/Desktop/sphinxbase/include'
make[3]: Nothing to be done for 'install-exec-am'.
/bin/mkdir -p '/usr/local/include/sphinxbase'
/usr/bin/install -c -m 644 sphinx_config.h '/usr/local/include/sphinxbase'
make[3]: Leaving directory '/home/ron/Desktop/sphinxbase/include'
make[2]: Leaving directory '/home/ron/Desktop/sphinxbase/include'
make[1]: Leaving directory '/home/ron/Desktop/sphinxbase/include'
Making install in test
make[1]: Entering directory '/home/ron/Desktop/sphinxbase/test'
Making install in unit
make[2]: Entering directory '/home/ron/Desktop/sphinxbase/test/unit'
Making install in test_alloc
make[3]: Entering directory '/home/ron/Desktop/sphinxbase/test/unit/test_alloc'
make[4]: Entering directory '/home/ron/Desktop/sphinxbase/test/unit/test_alloc'
make[4]: Nothing to be done for 'install-exec-am'.
make[4]: Nothing to be done for 'install-data-am'.
make[4]: Leaving directory '/home/ron/Desktop/sphinxbase/test/unit/test_alloc'
make[3]: Leaving directory '/home/ron/Desktop/sphinxbase/test/unit/test_alloc'
Making install in test_bitvec
make[3]: Entering directory '/home/ron/Desktop/sphinxbase/test/unit/test_bitvec'
make[4]: Entering directory '/home/ron/Desktop/sphinxbase/test/unit/test_bitvec'
make[4]: Nothing to be done for 'install-exec-am'.
make[4]: Nothing to be done for 'install-data-am'.
make[4]: Leaving directory '/home/ron/Desktop/sphinxbase/test/unit/test_bitvec'
make[3]: Leaving directory '/home/ron/Desktop/sphinxbase/test/unit/test_bitvec'
Making install in test_case
make[3]: Entering directory '/home/ron/Desktop/sphinxbase/test/unit/test_case'
make[4]: Entering directory '/home/ron/Desktop/sphinxbase/test/unit/test_case'
make[4]: Nothing to be done for 'install-exec-am'.
make[4]: Nothing to be done for 'install-data-am'.
make[4]: Leaving directory '/home/ron/Desktop/sphinxbase/test/unit/test_case'
make[3]: Leaving directory '/home/ron/Desktop/sphinxbase/test/unit/test_case'
Making install in test_string
make[3]: Entering directory '/home/ron/Desktop/sphinxbase/test/unit/test_string'
make[4]: Entering directory '/home/ron/Desktop/sphinxbase/test/unit/test_string'
make[4]: Nothing to be done for 'install-exec-am'.
make[4]: Nothing to be done for 'install-data-am'.
make[4]: Leaving directory '/home/ron/Desktop/sphinxbase/test/unit/test_string'
make[3]: Leaving directory '/home/ron/Desktop/sphinxbase/test/unit/test_string'
Making install in test_cmdln
make[3]: Entering directory '/home/ron/Desktop/sphinxbase/test/unit/test_cmdln'
make[4]: Entering directory '/home/ron/Desktop/sphinxbase/test/unit/test_cmdln'
make[4]: Nothing to be done for 'install-exec-am'.
make[4]: Nothing to be done for 'install-data-am'.
make[4]: Leaving directory '/home/ron/Desktop/sphinxbase/test/unit/test_cmdln'
make[3]: Leaving directory '/home/ron/Desktop/sphinxbase/test/unit/test_cmdln'
Making install in test_hash
make[3]: Entering directory '/home/ron/Desktop/sphinxbase/test/unit/test_hash'
make[4]: Entering directory '/home/ron/Desktop/sphinxbase/test/unit/test_hash'
make[4]: Nothing to be done for 'install-exec-am'.
make[4]: Nothing to be done for 'install-data-am'.
make[4]: Leaving directory '/home/ron/Desktop/sphinxbase/test/unit/test_hash'
make[3]: Leaving directory '/home/ron/Desktop/sphinxbase/test/unit/test_hash'
Making install in test_matrix
make[3]: Entering directory '/home/ron/Desktop/sphinxbase/test/unit/test_matrix'
make[4]: Entering directory '/home/ron/Desktop/sphinxbase/test/unit/test_matrix'
make[4]: Nothing to be done for 'install-exec-am'.
make[4]: Nothing to be done for 'install-data-am'.
make[4]: Leaving directory '/home/ron/Desktop/sphinxbase/test/unit/test_matrix'
make[3]: Leaving directory '/home/ron/Desktop/sphinxbase/test/unit/test_matrix'
Making install in test_fe
make[3]: Entering directory '/home/ron/Desktop/sphinxbase/test/unit/test_fe'
make[4]: Entering directory '/home/ron/Desktop/sphinxbase/test/unit/test_fe'
make[4]: Nothing to be done for 'install-exec-am'.
make[4]: Nothing to be done for 'install-data-am'.
make[4]: Leaving directory '/home/ron/Desktop/sphinxbase/test/unit/test_fe'
make[3]: Leaving directory '/home/ron/Desktop/sphinxbase/test/unit/test_fe'
Making install in test_feat
make[3]: Entering directory '/home/ron/Desktop/sphinxbase/test/unit/test_feat'
make[4]: Entering directory '/home/ron/Desktop/sphinxbase/test/unit/test_feat'
make[4]: Nothing to be done for 'install-exec-am'.
make[4]: Nothing to be done for 'install-data-am'.
make[4]: Leaving directory '/home/ron/Desktop/sphinxbase/test/unit/test_feat'
make[3]: Leaving directory '/home/ron/Desktop/sphinxbase/test/unit/test_feat'
Making install in test_lineiter
make[3]: Entering directory '/home/ron/Desktop/sphinxbase/test/unit/test_lineiter'
make[4]: Entering directory '/home/ron/Desktop/sphinxbase/test/unit/test_lineiter'
make[4]: Nothing to be done for 'install-exec-am'.
make[4]: Nothing to be done for 'install-data-am'.
make[4]: Leaving directory '/home/ron/Desktop/sphinxbase/test/unit/test_lineiter'
make[3]: Leaving directory '/home/ron/Desktop/sphinxbase/test/unit/test_lineiter'
Making install in test_logmath
make[3]: Entering directory '/home/ron/Desktop/sphinxbase/test/unit/test_logmath'
make[4]: Entering directory '/home/ron/Desktop/sphinxbase/test/unit/test_logmath'
make[4]: Nothing to be done for 'install-exec-am'.
make[4]: Nothing to be done for 'install-data-am'.
make[4]: Leaving directory '/home/ron/Desktop/sphinxbase/test/unit/test_logmath'
make[3]: Leaving directory '/home/ron/Desktop/sphinxbase/test/unit/test_logmath'
Making install in test_ngram
make[3]: Entering directory '/home/ron/Desktop/sphinxbase/test/unit/test_ngram'
make[4]: Entering directory '/home/ron/Desktop/sphinxbase/test/unit/test_ngram'
make[4]: Nothing to be done for 'install-exec-am'.
make[4]: Nothing to be done for 'install-data-am'.
make[4]: Leaving directory '/home/ron/Desktop/sphinxbase/test/unit/test_ngram'
make[3]: Leaving directory '/home/ron/Desktop/sphinxbase/test/unit/test_ngram'
Making install in test_fsg
make[3]: Entering directory '/home/ron/Desktop/sphinxbase/test/unit/test_fsg'
make[4]: Entering directory '/home/ron/Desktop/sphinxbase/test/unit/test_fsg'
make[4]: Nothing to be done for 'install-exec-am'.
make[4]: Nothing to be done for 'install-data-am'.
make[4]: Leaving directory '/home/ron/Desktop/sphinxbase/test/unit/test_fsg'
make[3]: Leaving directory '/home/ron/Desktop/sphinxbase/test/unit/test_fsg'
Making install in test_util
make[3]: Entering directory '/home/ron/Desktop/sphinxbase/test/unit/test_util'
make[4]: Entering directory '/home/ron/Desktop/sphinxbase/test/unit/test_util'
make[4]: Nothing to be done for 'install-exec-am'.
make[4]: Nothing to be done for 'install-data-am'.
make[4]: Leaving directory '/home/ron/Desktop/sphinxbase/test/unit/test_util'
make[3]: Leaving directory '/home/ron/Desktop/sphinxbase/test/unit/test_util'
Making install in test_thread
make[3]: Entering directory '/home/ron/Desktop/sphinxbase/test/unit/test_thread'
make[4]: Entering directory '/home/ron/Desktop/sphinxbase/test/unit/test_thread'
make[4]: Nothing to be done for 'install-exec-am'.
make[4]: Nothing to be done for 'install-data-am'.
make[4]: Leaving directory '/home/ron/Desktop/sphinxbase/test/unit/test_thread'
make[3]: Leaving directory '/home/ron/Desktop/sphinxbase/test/unit/test_thread'
make[3]: Entering directory '/home/ron/Desktop/sphinxbase/test/unit'
make[4]: Entering directory '/home/ron/Desktop/sphinxbase/test/unit'
make[4]: Nothing to be done for 'install-exec-am'.
make[4]: Nothing to be done for 'install-data-am'.
make[4]: Leaving directory '/home/ron/Desktop/sphinxbase/test/unit'
make[3]: Leaving directory '/home/ron/Desktop/sphinxbase/test/unit'
make[2]: Leaving directory '/home/ron/Desktop/sphinxbase/test/unit'
Making install in regression
make[2]: Entering directory '/home/ron/Desktop/sphinxbase/test/regression'
make[3]: Entering directory '/home/ron/Desktop/sphinxbase/test/regression'
make[3]: Nothing to be done for 'install-exec-am'.
make[3]: Nothing to be done for 'install-data-am'.
make[3]: Leaving directory '/home/ron/Desktop/sphinxbase/test/regression'
make[2]: Leaving directory '/home/ron/Desktop/sphinxbase/test/regression'
make[2]: Entering directory '/home/ron/Desktop/sphinxbase/test'
make[3]: Entering directory '/home/ron/Desktop/sphinxbase/test'
make[3]: Nothing to be done for 'install-exec-am'.
make[3]: Nothing to be done for 'install-data-am'.
make[3]: Leaving directory '/home/ron/Desktop/sphinxbase/test'
make[2]: Leaving directory '/home/ron/Desktop/sphinxbase/test'
make[1]: Leaving directory '/home/ron/Desktop/sphinxbase/test'
Making install in swig
make[1]: Entering directory '/home/ron/Desktop/sphinxbase/swig'
Making install in python
make[2]: Entering directory '/home/ron/Desktop/sphinxbase/swig/python'
make[3]: Entering directory '/home/ron/Desktop/sphinxbase/swig/python'
/bin/mkdir -p '/usr/local/lib/python3.7/site-packages/sphinxbase'
/usr/bin/install -c -m 644 sphinxbase.py '/usr/local/lib/python3.7/site-packages/sphinxbase'
-c:2: DeprecationWarning: the imp module is deprecated in favour of importlib; see the module's documentation for alternative uses
Byte-compiling python modules...
sphinxbase.py
Byte-compiling python modules (optimized versions) ...
sphinxbase.py
/bin/mkdir -p '/usr/local/lib/python3.7/site-packages/sphinxbase'
/bin/bash ../../libtool --mode=install /usr/bin/install -c _sphinxbase.la '/usr/local/lib/python3.7/site-packages/sphinxbase'
libtool: warning: relinking '_sphinxbase.la'
libtool: install: (cd /home/ron/Desktop/sphinxbase/swig/python; /bin/bash "/home/ron/Desktop/sphinxbase/libtool" --tag CC --mode=relink gcc -g -O2 -Wall -module -o _sphinxbase.la -rpath /usr/local/lib/python3.7/site-packages/sphinxbase _sphinxbase_la-sphinxbase_wrap.lo ../../src/libsphinxbase/libsphinxbase.la -lpulse -lpulse-simple -lpthread -lm )
libtool: relink: gcc -shared -fPIC -DPIC .libs/_sphinxbase_la-sphinxbase_wrap.o -L/usr/local/lib -lsphinxbase -lpulse -lpulse-simple -lpthread -lm -g -O2 -Wl,-soname -Wl,_sphinxbase.so.0 -o .libs/_sphinxbase.so.0.0.0
libtool: install: /usr/bin/install -c .libs/_sphinxbase.so.0.0.0T /usr/local/lib/python3.7/site-packages/sphinxbase/_sphinxbase.so.0.0.0
libtool: install: (cd /usr/local/lib/python3.7/site-packages/sphinxbase && { ln -s -f _sphinxbase.so.0.0.0 _sphinxbase.so.0 || { rm -f _sphinxbase.so.0 && ln -s _sphinxbase.so.0.0.0 _sphinxbase.so.0; }; })
libtool: install: (cd /usr/local/lib/python3.7/site-packages/sphinxbase && { ln -s -f _sphinxbase.so.0.0.0 _sphinxbase.so || { rm -f _sphinxbase.so && ln -s _sphinxbase.so.0.0.0 _sphinxbase.so; }; })
libtool: install: /usr/bin/install -c .libs/_sphinxbase.lai /usr/local/lib/python3.7/site-packages/sphinxbase/_sphinxbase.la
libtool: install: /usr/bin/install -c .libs/_sphinxbase.a /usr/local/lib/python3.7/site-packages/sphinxbase/_sphinxbase.a
libtool: install: chmod 644 /usr/local/lib/python3.7/site-packages/sphinxbase/_sphinxbase.a
libtool: install: ranlib /usr/local/lib/python3.7/site-packages/sphinxbase/_sphinxbase.a
libtool: finish: PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin:/sbin" ldconfig -n /usr/local/lib/python3.7/site-packages/sphinxbase
----------------------------------------------------------------------
Libraries have been installed in:
/usr/local/lib/python3.7/site-packages/sphinxbase
If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the '-LLIBDIR'
flag during linking and do at least one of the following:
- add LIBDIR to the 'LD_LIBRARY_PATH' environment variable
during execution
- add LIBDIR to the 'LD_RUN_PATH' environment variable
during linking
- use the '-Wl,-rpath -Wl,LIBDIR' linker flag
- have your system administrator add LIBDIR to '/etc/ld.so.conf'
See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------
/bin/mkdir -p '/usr/local/lib/python3.7/site-packages/sphinxbase'
/usr/bin/install -c -m 644 __init__.py '/usr/local/lib/python3.7/site-packages/sphinxbase'
-c:2: DeprecationWarning: the imp module is deprecated in favour of importlib; see the module's documentation for alternative uses
Byte-compiling python modules...
__init__.py
Byte-compiling python modules (optimized versions) ...
__init__.py
make[3]: Nothing to be done for 'install-data-am'.
make[3]: Leaving directory '/home/ron/Desktop/sphinxbase/swig/python'
make[2]: Leaving directory '/home/ron/Desktop/sphinxbase/swig/python'
make[2]: Entering directory '/home/ron/Desktop/sphinxbase/swig'
make[3]: Entering directory '/home/ron/Desktop/sphinxbase/swig'
make[3]: Nothing to be done for 'install-exec-am'.
/bin/mkdir -p '/usr/local/share/sphinxbase/swig'
/usr/bin/install -c -m 644 cmd_ln.i fe.i feat.i fsg_model.i jsgf.i iterators.i logmath.i ngram_model.i sphinxbase.i typemaps.i '/usr/local/share/sphinxbase/swig'
make[3]: Leaving directory '/home/ron/Desktop/sphinxbase/swig'
make[2]: Leaving directory '/home/ron/Desktop/sphinxbase/swig'
make[1]: Leaving directory '/home/ron/Desktop/sphinxbase/swig'
make[1]: Entering directory '/home/ron/Desktop/sphinxbase'
make[2]: Entering directory '/home/ron/Desktop/sphinxbase'
make[2]: Nothing to be done for 'install-exec-am'.
/bin/mkdir -p '/usr/local/lib/pkgconfig'
/usr/bin/install -c -m 644 sphinxbase.pc '/usr/local/lib/pkgconfig'
make[2]: Leaving directory '/home/ron/Desktop/sphinxbase'
make[1]: Leaving directory '/home/ron/Desktop/sphinxbase'
And here is the output of the pocketsphinx install command
aking install in src
make[1]: Entering directory '/home/ron/Desktop/pocketsphinx/src'
Making install in libpocketsphinx
make[2]: Entering directory '/home/ron/Desktop/pocketsphinx/src/libpocketsphinx'
make[3]: Entering directory '/home/ron/Desktop/pocketsphinx/src/libpocketsphinx'
/bin/mkdir -p '/usr/local/lib'
/bin/bash ../../libtool --mode=install /usr/bin/install -c libpocketsphinx.la '/usr/local/lib'
libtool: warning: relinking 'libpocketsphinx.la'
libtool: install: (cd /home/ron/Desktop/pocketsphinx/src/libpocketsphinx; /bin/bash "/home/ron/Desktop/pocketsphinx/libtool" --tag CC --mode=relink gcc -I../../include -I../../include -DMODELDIR=\"/usr/local/share/pocketsphinx/model\" -g -O2 -Wall -version-info 3:0:0 -lm -L/home/ron/Desktop/pocketsphinx/../sphinxbase/lib -L/home/ron/Desktop/pocketsphinx/../sphinxbase/src/libsphinxad -L/home/ron/Desktop/pocketsphinx/../sphinxbase/src/libsphinxbase -o libpocketsphinx.la -rpath /usr/local/lib acmod.lo bin_mdef.lo blkarray_list.lo dict.lo dict2pid.lo fsg_history.lo fsg_lextree.lo fsg_search.lo allphone_search.lo kws_search.lo kws_detections.lo hmm.lo mdef.lo ms_gauden.lo ms_mgau.lo ms_senone.lo ngram_search.lo ngram_search_fwdtree.lo ngram_search_fwdflat.lo phone_loop_search.lo ps_alignment.lo ps_lattice.lo ps_mllr.lo ptm_mgau.lo s2_semi_mgau.lo state_align_search.lo tmat.lo vector.lo pocketsphinx.lo -lsphinxbase )
libtool: relink: gcc -shared -fPIC -DPIC .libs/acmod.o .libs/bin_mdef.o .libs/blkarray_list.o .libs/dict.o .libs/dict2pid.o .libs/fsg_history.o .libs/fsg_lextree.o .libs/fsg_search.o .libs/allphone_search.o .libs/kws_search.o .libs/kws_detections.o .libs/hmm.o .libs/mdef.o .libs/ms_gauden.o .libs/ms_mgau.o .libs/ms_senone.o .libs/ngram_search.o .libs/ngram_search_fwdtree.o .libs/ngram_search_fwdflat.o .libs/phone_loop_search.o .libs/ps_alignment.o .libs/ps_lattice.o .libs/ps_mllr.o .libs/ptm_mgau.o .libs/s2_semi_mgau.o .libs/state_align_search.o .libs/tmat.o .libs/vector.o .libs/pocketsphinx.o -L/home/ron/Desktop/pocketsphinx/../sphinxbase/lib -L/home/ron/Desktop/pocketsphinx/../sphinxbase/src/libsphinxad -L/home/ron/Desktop/pocketsphinx/../sphinxbase/src/libsphinxbase -L/usr/local/lib -lsphinxbase -lpulse -lpulse-simple -lpthread -lm -g -O2 -Wl,-soname -Wl,libpocketsphinx.so.3 -o .libs/libpocketsphinx.so.3.0.0
libtool: install: /usr/bin/install -c .libs/libpocketsphinx.so.3.0.0T /usr/local/lib/libpocketsphinx.so.3.0.0
libtool: install: (cd /usr/local/lib && { ln -s -f libpocketsphinx.so.3.0.0 libpocketsphinx.so.3 || { rm -f libpocketsphinx.so.3 && ln -s libpocketsphinx.so.3.0.0 libpocketsphinx.so.3; }; })
libtool: install: (cd /usr/local/lib && { ln -s -f libpocketsphinx.so.3.0.0 libpocketsphinx.so || { rm -f libpocketsphinx.so && ln -s libpocketsphinx.so.3.0.0 libpocketsphinx.so; }; })
libtool: install: /usr/bin/install -c .libs/libpocketsphinx.lai /usr/local/lib/libpocketsphinx.la
libtool: install: /usr/bin/install -c .libs/libpocketsphinx.a /usr/local/lib/libpocketsphinx.a
libtool: install: chmod 644 /usr/local/lib/libpocketsphinx.a
libtool: install: ranlib /usr/local/lib/libpocketsphinx.a
libtool: finish: PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin:/sbin" ldconfig -n /usr/local/lib
----------------------------------------------------------------------
Libraries have been installed in:
/usr/local/lib
If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the '-LLIBDIR'
flag during linking and do at least one of the following:
- add LIBDIR to the 'LD_LIBRARY_PATH' environment variable
during execution
- add LIBDIR to the 'LD_RUN_PATH' environment variable
during linking
- use the '-Wl,-rpath -Wl,LIBDIR' linker flag
- have your system administrator add LIBDIR to '/etc/ld.so.conf'
See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------
make[3]: Nothing to be done for 'install-data-am'.
make[3]: Leaving directory '/home/ron/Desktop/pocketsphinx/src/libpocketsphinx'
make[2]: Leaving directory '/home/ron/Desktop/pocketsphinx/src/libpocketsphinx'
Making install in programs
make[2]: Entering directory '/home/ron/Desktop/pocketsphinx/src/programs'
make[3]: Entering directory '/home/ron/Desktop/pocketsphinx/src/programs'
/bin/mkdir -p '/usr/local/bin'
/bin/bash ../../libtool --mode=install /usr/bin/install -c pocketsphinx_batch pocketsphinx_continuous pocketsphinx_mdef_convert '/usr/local/bin'
libtool: install: /usr/bin/install -c .libs/pocketsphinx_batch /usr/local/bin/pocketsphinx_batch
libtool: install: /usr/bin/install -c .libs/pocketsphinx_continuous /usr/local/bin/pocketsphinx_continuous
libtool: install: /usr/bin/install -c .libs/pocketsphinx_mdef_convert /usr/local/bin/pocketsphinx_mdef_convert
make[3]: Nothing to be done for 'install-data-am'.
make[3]: Leaving directory '/home/ron/Desktop/pocketsphinx/src/programs'
make[2]: Leaving directory '/home/ron/Desktop/pocketsphinx/src/programs'
Making install in gst-plugin
make[2]: Entering directory '/home/ron/Desktop/pocketsphinx/src/gst-plugin'
make[3]: Entering directory '/home/ron/Desktop/pocketsphinx/src/gst-plugin'
make[3]: Nothing to be done for 'install-exec-am'.
make[3]: Leaving directory '/home/ron/Desktop/pocketsphinx/src/gst-plugin'
make[2]: Leaving directory '/home/ron/Desktop/pocketsphinx/src/gst-plugin'
make[2]: Entering directory '/home/ron/Desktop/pocketsphinx/src'
make[3]: Entering directory '/home/ron/Desktop/pocketsphinx/src'
make[3]: Nothing to be done for 'install-exec-am'.
make[3]: Nothing to be done for 'install-data-am'.
make[3]: Leaving directory '/home/ron/Desktop/pocketsphinx/src'
make[2]: Leaving directory '/home/ron/Desktop/pocketsphinx/src'
make[1]: Leaving directory '/home/ron/Desktop/pocketsphinx/src'
Making install in doc
make[1]: Entering directory '/home/ron/Desktop/pocketsphinx/doc'
make[2]: Entering directory '/home/ron/Desktop/pocketsphinx/doc'
make[2]: Nothing to be done for 'install-exec-am'.
/bin/mkdir -p '/usr/local/share/man/man1'
/usr/bin/install -c -m 644 pocketsphinx_batch.1 pocketsphinx_continuous.1 pocketsphinx_mdef_convert.1 '/usr/local/share/man/man1'
make[2]: Leaving directory '/home/ron/Desktop/pocketsphinx/doc'
make[1]: Leaving directory '/home/ron/Desktop/pocketsphinx/doc'
Making install in model
make[1]: Entering directory '/home/ron/Desktop/pocketsphinx/model'
make[2]: Entering directory '/home/ron/Desktop/pocketsphinx/model'
make[2]: Nothing to be done for 'install-exec-am'.
/bin/mkdir -p '/usr/local/share/pocketsphinx/model/en-us/en-us'
/usr/bin/install -c -m 644 en-us/en-us/feat.params en-us/en-us/variances en-us/en-us/transition_matrices en-us/en-us/README en-us/en-us/noisedict en-us/en-us/sendump en-us/en-us/mdef en-us/en-us/means '/usr/local/share/pocketsphinx/model/en-us/en-us'
/bin/mkdir -p '/usr/local/share/pocketsphinx/model/en-us'
/usr/bin/install -c -m 644 en-us/cmudict-en-us.dict en-us/en-us-phone.lm.bin en-us/en-us.lm.bin '/usr/local/share/pocketsphinx/model/en-us'
make[2]: Leaving directory '/home/ron/Desktop/pocketsphinx/model'
make[1]: Leaving directory '/home/ron/Desktop/pocketsphinx/model'
Making install in include
make[1]: Entering directory '/home/ron/Desktop/pocketsphinx/include'
make[2]: Entering directory '/home/ron/Desktop/pocketsphinx/include'
make[2]: Nothing to be done for 'install-exec-am'.
/bin/mkdir -p '/usr/local/include/pocketsphinx'
/usr/bin/install -c -m 644 cmdln_macro.h ps_lattice.h ps_mllr.h ps_search.h pocketsphinx_export.h pocketsphinx.h '/usr/local/include/pocketsphinx'
make[2]: Leaving directory '/home/ron/Desktop/pocketsphinx/include'
make[1]: Leaving directory '/home/ron/Desktop/pocketsphinx/include'
Making install in test
make[1]: Entering directory '/home/ron/Desktop/pocketsphinx/test'
Making install in unit
make[2]: Entering directory '/home/ron/Desktop/pocketsphinx/test/unit'
make[3]: Entering directory '/home/ron/Desktop/pocketsphinx/test/unit'
make[3]: Nothing to be done for 'install-exec-am'.
make[3]: Nothing to be done for 'install-data-am'.
make[3]: Leaving directory '/home/ron/Desktop/pocketsphinx/test/unit'
make[2]: Leaving directory '/home/ron/Desktop/pocketsphinx/test/unit'
Making install in regression
make[2]: Entering directory '/home/ron/Desktop/pocketsphinx/test/regression'
make[3]: Entering directory '/home/ron/Desktop/pocketsphinx/test/regression'
make[3]: Nothing to be done for 'install-exec-am'.
make[3]: Nothing to be done for 'install-data-am'.
make[3]: Leaving directory '/home/ron/Desktop/pocketsphinx/test/regression'
make[2]: Leaving directory '/home/ron/Desktop/pocketsphinx/test/regression'
make[2]: Entering directory '/home/ron/Desktop/pocketsphinx/test'
make[3]: Entering directory '/home/ron/Desktop/pocketsphinx/test'
make[3]: Nothing to be done for 'install-exec-am'.
make[3]: Nothing to be done for 'install-data-am'.
make[3]: Leaving directory '/home/ron/Desktop/pocketsphinx/test'
make[2]: Leaving directory '/home/ron/Desktop/pocketsphinx/test'
make[1]: Leaving directory '/home/ron/Desktop/pocketsphinx/test'
Making install in swig
make[1]: Entering directory '/home/ron/Desktop/pocketsphinx/swig'
Making install in python
make[2]: Entering directory '/home/ron/Desktop/pocketsphinx/swig/python'
Making install in test
make[3]: Entering directory '/home/ron/Desktop/pocketsphinx/swig/python/test'
make[4]: Entering directory '/home/ron/Desktop/pocketsphinx/swig/python/test'
make[4]: Nothing to be done for 'install-exec-am'.
make[4]: Nothing to be done for 'install-data-am'.
make[4]: Leaving directory '/home/ron/Desktop/pocketsphinx/swig/python/test'
make[3]: Leaving directory '/home/ron/Desktop/pocketsphinx/swig/python/test'
make[3]: Entering directory '/home/ron/Desktop/pocketsphinx/swig/python'
make[4]: Entering directory '/home/ron/Desktop/pocketsphinx/swig/python'
/bin/mkdir -p '/usr/local/lib/python3.7/site-packages/pocketsphinx'
/usr/bin/install -c -m 644 pocketsphinx.py '/usr/local/lib/python3.7/site-packages/pocketsphinx'
-c:2: DeprecationWarning: the imp module is deprecated in favour of importlib; see the module's documentation for alternative uses
Byte-compiling python modules...
pocketsphinx.py
Byte-compiling python modules (optimized versions) ...
pocketsphinx.py
/bin/mkdir -p '/usr/local/lib/python3.7/site-packages/pocketsphinx'
/bin/bash ../../libtool --mode=install /usr/bin/install -c _pocketsphinx.la '/usr/local/lib/python3.7/site-packages/pocketsphinx'
libtool: warning: relinking '_pocketsphinx.la'
libtool: install: (cd /home/ron/Desktop/pocketsphinx/swig/python; /bin/bash "/home/ron/Desktop/pocketsphinx/libtool" --tag CC --mode=relink gcc -I/home/ron/anaconda3/include/python3.7m -I../../include -D_DATADIR=\"/usr/local/share/pocketsphinx\" -g -O2 -Wall -module -L/home/ron/Desktop/pocketsphinx/../sphinxbase/lib -L/home/ron/Desktop/pocketsphinx/../sphinxbase/src/libsphinxad -L/home/ron/Desktop/pocketsphinx/../sphinxbase/src/libsphinxbase -o _pocketsphinx.la -rpath /usr/local/lib/python3.7/site-packages/pocketsphinx pocketsphinx_wrap.lo -lsphinxbase ../../src/libpocketsphinx/libpocketsphinx.la -lsphinxbase )
libtool: relink: gcc -shared -fPIC -DPIC .libs/pocketsphinx_wrap.o -L/home/ron/Desktop/pocketsphinx/../sphinxbase/src/libsphinxbase/.libs -L/home/ron/Desktop/pocketsphinx/../sphinxbase/lib -L/home/ron/Desktop/pocketsphinx/../sphinxbase/src/libsphinxad -L/home/ron/Desktop/pocketsphinx/../sphinxbase/src/libsphinxbase -L/usr/local/lib -lpocketsphinx -lsphinxbase -lpulse -lpulse-simple -lpthread -lm -g -O2 -Wl,-soname -Wl,_pocketsphinx.so.0 -o .libs/_pocketsphinx.so.0.0.0
libtool: install: /usr/bin/install -c .libs/_pocketsphinx.so.0.0.0T /usr/local/lib/python3.7/site-packages/pocketsphinx/_pocketsphinx.so.0.0.0
libtool: install: (cd /usr/local/lib/python3.7/site-packages/pocketsphinx && { ln -s -f _pocketsphinx.so.0.0.0 _pocketsphinx.so.0 || { rm -f _pocketsphinx.so.0 && ln -s _pocketsphinx.so.0.0.0 _pocketsphinx.so.0; }; })
libtool: install: (cd /usr/local/lib/python3.7/site-packages/pocketsphinx && { ln -s -f _pocketsphinx.so.0.0.0 _pocketsphinx.so || { rm -f _pocketsphinx.so && ln -s _pocketsphinx.so.0.0.0 _pocketsphinx.so; }; })
libtool: install: /usr/bin/install -c .libs/_pocketsphinx.lai /usr/local/lib/python3.7/site-packages/pocketsphinx/_pocketsphinx.la
libtool: install: /usr/bin/install -c .libs/_pocketsphinx.a /usr/local/lib/python3.7/site-packages/pocketsphinx/_pocketsphinx.a
libtool: install: chmod 644 /usr/local/lib/python3.7/site-packages/pocketsphinx/_pocketsphinx.a
libtool: install: ranlib /usr/local/lib/python3.7/site-packages/pocketsphinx/_pocketsphinx.a
libtool: finish: PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin:/sbin" ldconfig -n /usr/local/lib/python3.7/site-packages/pocketsphinx
----------------------------------------------------------------------
Libraries have been installed in:
/usr/local/lib/python3.7/site-packages/pocketsphinx
If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the '-LLIBDIR'
flag during linking and do at least one of the following:
- add LIBDIR to the 'LD_LIBRARY_PATH' environment variable
during execution
- add LIBDIR to the 'LD_RUN_PATH' environment variable
during linking
- use the '-Wl,-rpath -Wl,LIBDIR' linker flag
- have your system administrator add LIBDIR to '/etc/ld.so.conf'
See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------
/bin/mkdir -p '/usr/local/lib/python3.7/site-packages/pocketsphinx'
/usr/bin/install -c -m 644 __init__.py '/usr/local/lib/python3.7/site-packages/pocketsphinx'
-c:2: DeprecationWarning: the imp module is deprecated in favour of importlib; see the module's documentation for alternative uses
Byte-compiling python modules...
__init__.py
Byte-compiling python modules (optimized versions) ...
__init__.py
make[4]: Nothing to be done for 'install-data-am'.
make[4]: Leaving directory '/home/ron/Desktop/pocketsphinx/swig/python'
make[3]: Leaving directory '/home/ron/Desktop/pocketsphinx/swig/python'
make[2]: Leaving directory '/home/ron/Desktop/pocketsphinx/swig/python'
make[2]: Entering directory '/home/ron/Desktop/pocketsphinx/swig'
make[3]: Entering directory '/home/ron/Desktop/pocketsphinx/swig'
make[3]: Nothing to be done for 'install-exec-am'.
/bin/mkdir -p '/usr/local/share/pocketsphinx/swig'
/usr/bin/install -c -m 644 pocketsphinx.i ps_decoder.i ps_lattice.i '/usr/local/share/pocketsphinx/swig'
make[3]: Leaving directory '/home/ron/Desktop/pocketsphinx/swig'
make[2]: Leaving directory '/home/ron/Desktop/pocketsphinx/swig'
make[1]: Leaving directory '/home/ron/Desktop/pocketsphinx/swig'
make[1]: Entering directory '/home/ron/Desktop/pocketsphinx'
make[2]: Entering directory '/home/ron/Desktop/pocketsphinx'
make[2]: Nothing to be done for 'install-exec-am'.
/bin/mkdir -p '/usr/local/lib/pkgconfig'
/usr/bin/install -c -m 644 pocketsphinx.pc '/usr/local/lib/pkgconfig'
make[2]: Leaving directory '/home/ron/Desktop/pocketsphinx'
make[1]: Leaving directory '/home/ron/Desktop/pocketsphinx'