How to get FFTW working

谁说我不能喝 提交于 2019-12-12 04:17:44

问题


I am having problems getting FFTW 3.3 to work on my system.I downloaded the files from the fftw.org website, and then followed the installation instructions which told me to go to the terminal and type

./Configure
make

and everything seemed OK, but when I try and use FFTW in my C code by using the include<fft3> statement I get the fatal error

fatal error: 'fftw3.h' file not found

Does anyone know what I am doing wrong?

My IDE: Eclipse, My System: OSX 10.8


回答1:


./configure
make
make install

You forgot the install command.



来源:https://stackoverflow.com/questions/19742069/how-to-get-fftw-working

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!