apxs 错误:gcc:没有这样的文件或目录

apxs 错误:gcc:没有这样的文件或目录

我正在尝试将 mod_xsendfile 安装到我的 gentoo 服务器上。

我做到了:

cd /usr/local/apache/bin
./apxs -cia /mod_xsendfile.c

并且不起作用。

它说:

gcc: /mod_sendfile.c: No such file or directory

但文件就在那里!

答案1

该文件位于 的可能性很小/mod_xsendfile.c,它不属于那里。您可能指的是当前目录,请删除斜线,或将斜线替换为./(当前目录):

cd /usr/local/apache/bin
./apxs -cia mod_xsendfile.c

相关内容