WaoN をインストールしようとしています。 Sudo make -f Makefile.waon
を実行すると、次のエラーが表示されます。
gcc -Wall -march=pentium -O3 -ffast-math `pkg-config --cflags fftw3` `pkg-config --cflags sndfile` -c -o main.o main.c
Package fftw3 was not found in the pkg-config search path.
Perhaps you should add the directory containing `fftw3.pc'
to the PKG_CONFIG_PATH environment variable
No package 'fftw3' found
Package sndfile was not found in the pkg-config search path.
Perhaps you should add the directory containing `sndfile.pc'
to the PKG_CONFIG_PATH environment variable
No package 'sndfile' found
main.c:31:19: fatal error: fftw3.h: No such file or directory
#include <fftw3.h>
^
compilation terminated.
make: *** [main.o] Error 1
FFTW3
でSudo apt-get install libfftw3-3
とSudo apt-get install libsndfile1
でlibsndfile
をインストールしました。しかし、この問題は残っています。どうすれば修正できますか?
欠落しているファイルfftw3.h
はパッケージlibfftw3-dev
にあるため、
Sudo apt-get install libfftw3-dev
libsndfile1
をインストールします
Sudo apt-get install libsndfile1-dev