我正在尝试在Ubuntu 11.10服务器上安装PCRE。当我运行“make”命令时,我得到了一个很长的输出,总是以这个错误结束:

libtool: link: ( cd ".libs" && rm -f "libpcreposix.la" && ln -s "../libpcreposix.la" "libpcreposix.la" ) source='pcrecpp.cc' object='pcrecpp.lo' libtool=yes \
        DEPDIR=.deps depmode=none /bin/bash ./depcomp \
        /bin/bash ./libtool --tag=CXX   --mode=compile  -DHAVE_CONFIG_H -I.      -c -o pcrecpp.lo pcrecpp.cc libtool: compile: unrecognized option `-DHAVE_CONFIG_H' libtool: compile: Try `libtool
--help' for more information. make[1]: *** [pcrecpp.lo] Error 1 make[1]: Leaving directory `/home/root/src/pcre/pcre-8.12' make:
*** [all] Error 2

我确实运行了“配置”。有任何想法吗?

最佳答案

您需要安装C++编译器,最有可能需要g++。

使用apt-get,运行“apt-get install g++”或“apt-get install build-essential”,因为build-essential包含g++。

关于linux - 安装PCRE时出错,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7866445/

10-11 16:45