web-dev-qa-db-fra.com

Le paquet n'a pas été trouvé dans le chemin de recherche de pkg-config

J'essaie d'installer WaoN . Lorsque je lance Sudo make -f Makefile.waon, les erreurs suivantes me sont signalées:

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

J'ai installé FFTW3 avec Sudo apt-get install libfftw3-3 et libsndfile avec Sudo apt-get install libsndfile1. Mais ce problème demeure. Comment puis-je le réparer?

1
CluelessNoob

Le fichier manquant fftw3.h se trouve dans le package libfftw3-dev, donc

Sudo apt-get install libfftw3-dev

Et installez libsndfile1 via

Sudo apt-get install libsndfile1-dev
3
A.B.