1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
Basic installation procedure.
You need the GNU tools : aclocal, autoconf, automake (some old versions do not work), libtool.
First, build your configure, ltmain.sh and Makefile scripts with autogen.sh
Then, you can run the scripts
./configure [options]
make
make install
The options for "configure" are given by
./configure --help
Specific options to PolyLib are:
--enable-int-lib Build an int library
--enable-longint-lib Build a long int library
--enable-longlongint-lib Build a long long int library
--enable-extra-suffix Add bits size suffix to executables
--with-libgmp DIR Location of the GMP Distribution
--with-doxygen DIR Location of the Doxygen Distribution (http://www.doxygen.org)
You may want to specify:
--prefix=/usr
|