Installing MPC ============== This is for the impatient, for deeper explanations see Installing MPC chapter in the Texinfo documentation (type 'info mpc.info'). 0. You first need to install GMP and MPFR. See and . MPC requires GMP version 4.2.2 or later and MPFR version 2.3.0 or later. 1. In the directory MPC archive, type tar xzf mpc-0.4.7.tar.gz cd mpc-0.4.7 ./configure make This assumes that GMP and MPFR are installed in a directory searched by default by the compiler. Otherwise, use --with-gmp=DIR or --with-mpfr=DIR (see Texinfo documentation). 2. You can optionally run the test suit, type make check 3. To install the MPC library, type make install By default, the files are copied into /usr/local subdirectories. You need write permissions on these directories. 4. You can optionally create documentation, type make mpc.dvi or make mpc.ps This requires Texinfo package. In case of difficulties, send a description of the problem to (replace 'at' by '@', and 'dot' by '.'). ############################################################################## Note for Windows users: ====================== There is a special file makefile.vc for Windows, contributed by Mickael Gastineau. This file works both for the Windows Server 2003 R2 Platform SDK, and for the Windows SDK of Vista. To use it, simply replace "make" by "nmake /f makefile.vc" in the above instructions: compilation : nmake /f makefile.vc GMP= MPFR= clean : nmake /f makefile.vc GMP= MPFR= clean check : nmake /f makefile.vc GMP= MPFR= check For any issue related to the makefile.vc file, please contact directly Mickael Gastineau at (replace 'at' by '@', and 'dot' by '.').