-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fftw3 compile error #2
Comments
When linking error is occured, compile and install "fftw3" once again using next commands:
for shared library : --enable-shared You can check other flags at "10 Installation and Customization" in fftw3 manual. |
Install fftw3 using the following command After unzipping 'fftw-3.3.10.tar.gz' in the third-party folder, do the following to install
|
You need to install both float and non-float option. $ cmake . Check /usr/local/lib/cmake and if FFTW3Config.cmake exist. If yes, install float option once more. $ cmake . Check /usr/local/lib/cmake and if FFTW3fConfig.cmake exist. Check /usr/local/lib/cmake and if FFTW3LibraryDepends.cmake exist. If not, run below to copy the file manually. $ sudo cp FFTW3LibraryDepends.cmake /usr/local/lib/cmake/fftw3/ |
CMake Error at /usr/local/lib/cmake/fftw3/FFTW3Config.cmake:13 (include):
include could not find load file:
/usr/local/lib/cmake/fftw3/FFTW3LibraryDepends.cmake
This is because "FFTW3LibraryDepends.cmake" is missing. This is known issue from the community.
[REF] FFTW/fftw3#130
The text was updated successfully, but these errors were encountered: