我迷路了。
我有Linux CentOS操作系统。
我试图在pcre网站上下载的pcre包中找到pcre.h。
我还按照安装指南中的说明进行了配置,
但没有运气。有什么帮助吗?

最佳答案

最新版本称为PCRE2,头文件名为pcre2.h,这是路径
ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre2-10.00.tar.bz2

在您提到的版本(8.37)中,pcre.h将在安装后生成。尝试这个:

./configure --prefix=/home/$USER/pcre/
make
make install


pcre软件包将安装在您的主目录中,您可以在其中找到pcre.h标头。

关于c++ - 库包pcre-8.37中的文件pcre.h在哪里,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/30094111/

10-11 09:23