Package was not found in the pkg-config search path
I am trying to install WaoN. Когда я бегу sudo make -f Makefile.waon
it gives me the following errors:
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
а также libsndfile
с sudo apt-get install libsndfile1
, But this problem remains. Как я могу это исправить?
1 ответ
Решение
Отсутствующий файл fftw3.h
в упаковке libfftw3-dev
, следовательно
sudo apt-get install libfftw3-dev
И установить libsndfile1
с помощью
sudo apt-get install libsndfile1-dev