mxlib
c++ tools for analyzing astronomical data and other tasks by Jared R. Males. [git repo]
|
Building and Installing FFTW.
Building and Installing FFTW.
The FFTW library is probably available from your software/package manager, however I recommend building it yourself to ensure it is fullly optimized for your system, and that you have all of the precisions available.
Folow these steps to build the FFTW library.
$ ./configure --enable-float --with-combined-threads --enable-threads --enable-shared $ make -j $ sudo make install
$ ./configure --with-combined-threads --enable-threads --enable-shared $ make -j $ sudo make install
$ ./configure --enable-long-double --with-combined-threads --enable-threads --enable-shared $ make -j $ sudo make install
$ ./configure --enable-quad-precision --with-combined-threads --enable-threads --enable-shared $ make -j $ sudo make install