Blog Archive

Saturday, March 5, 2011

build binary file in linux[best]

BUILDING FROM TARBALL(*.tar or *.tar.gz) DISTRIBUTIONS:

Installing package (eg. Speex) is as easy as:

 ./configure [--prefix=<install-path>]
 make
 make install

Note that if you are using the code from SVN, you will need to run "autogen.sh"
instead of "configure". (but how to specify install-path?)

./autogen.sh
make
make install

No comments:

Post a Comment