I am trying to compile pocketsphinx for a ARM9 processor (S3C2440 - mini2440).
Compilation was successful, but I would like to compile static to avoid
problems with libs.
How can I compile statically pocketsphinx? I tried ./configure -enable-static,
without success.
Luis
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
sorry, you aren't quite clear. Do you need static libpocketsphinx? It's
compiled by default and have extention .a which you can link into your
application.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Anonymous
-
2010-07-13
I have this problem:
./bin/pocketsphinx_batch
./bin/pocketsphinx_batch: error while loading shared libraries:
libpocketsphinx.so.1: cannot open shared object file: No such file or
directory
I would like to avoid this since I need to use exactly same path to use
pocketsphinx.
Luis
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi,
I am trying to compile pocketsphinx for a ARM9 processor (S3C2440 - mini2440).
Compilation was successful, but I would like to compile static to avoid
problems with libs.
How can I compile statically pocketsphinx? I tried ./configure -enable-static,
without success.
Luis
sorry, you aren't quite clear. Do you need static libpocketsphinx? It's
compiled by default and have extention .a which you can link into your
application.
I have this problem:
./bin/pocketsphinx_batch
./bin/pocketsphinx_batch: error while loading shared libraries:
libpocketsphinx.so.1: cannot open shared object file: No such file or
directory
I would like to avoid this since I need to use exactly same path to use
pocketsphinx.
Luis
cd pocketsphinx/src/programs
make clean && make CFLAGS="-O2 -static"
Thanks, worked.