Installing FFTW
Procedure
- Use PuTTY to log in to the server as the root user.
- Decompress the FFTW installation package.
tar -zxvf fftw-3.3.8.tar.gz
- Go to the directory generated after the decompression.
cd fftw-3.3.8
- Perform the configuration.
./configure CC=clang F77=flang --enable-shared --enable-threads --enable-openmp --enable-mpi MPICC=mpicc --prefix=/path/to/EXTRA/FFTW
- Perform the compilation and installation.
make -j && make install
Parent topic: Configuring the Compilation Environment