我正试图编译一个C程序,它告诉我
user@cu-cs-vm:~/Downloads/pa5$ make
gcc -c -g -Wall -Wextra `pkg-config fuse --cflags` fusehello.c
Package fuse was not found in the pkg-config search path.
Perhaps you should add the directory containing `fuse.pc'
to the PKG_CONFIG_PATH environment variable
No package 'fuse' found
fusehello.c:21:18: fatal error: fuse.h: No such file or directory
compilation terminated.当我试图安装保险丝时,它只是告诉我它已经安装好了。
sudo apt-get install fuse 我看了usr/lib/pkgconfig,而fuse.pc不在那里。它应该在那里吗?
发布于 2016-12-04 23:39:16
我不知道您使用的是哪个发行版,但您可能需要安装libfuse-dev。保险丝头文件丢失。
https://unix.stackexchange.com/questions/328016
复制相似问题