Installing FFTW
Procedure
- Use PuTTY to log in to the server as the root user.
- Run the following command to decompress the FFTW installation package:
tar -zxvf fftw-3.3.8.tar.gz
- Run the following command to switch to the directory generated after decompression:
cd fftw-3.3.8
- Run the following command to perform configuration:
./configure CC=gcc F77=gfortran --enable-shared --enable-threads --enable-openmp --enable-mpi MPICC=mpicc --prefix= /path/to/EXTRA/fftw3
- Run the following commands to perform compilation and installation:
make -j make install
Parent topic: Configuring the Compilation Environment