Installing GMP
Procedure
- Use PuTTY to log in to the server as the root user.
- Decompress the GMP installation package.
tar -xvf gmp-6.2.0.tar.xz
- Go to the directory generated after the decompression.
cd gmp-6.2.0
- Perform the configuration.
./configure --prefix=/path/to/GMP --enable-cxx
- Perform the installation.
make -j && make install
Parent topic: Configuring the Compilation Environment