pcre-8.21编译安装出错[pcrecpp.lo] Error 1

系统:CentOS 6.3

错误信息:

source='pcrecpp.cc' object='pcrecpp.lo' libtool=yes \
    DEPDIR=.deps depmode=none /bin/sh ./depcomp \
    /bin/sh ./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] 错误 1
make[1]: Leaving directory `/soft/pcre-8.21'
make: *** [all] 错误 2

错误原因:缺少安装gcc-c++

解决方法:输入  yum -y install gcc-c++,重新configure,make && make install通过。

时间: 2024-09-23 15:51:39

pcre-8.21编译安装出错[pcrecpp.lo] Error 1的相关文章

pcre-7.9编译安装出错[pcrecpp.lo] Error 1的解决

下载pcre-7.9编译安装,make时报错: source='pcrecpp.cc' object='pcrecpp.lo' libtool=yes  DEPDIR=.deps depmode=none /bin/sh ./depcomp  /bin/sh ./libtool --tag=CXX   --mode=compile  -DHAVE_CONFIG_H -I.   -I/usr/kerberos/include   -c -o pcrecpp.lo pcrecpp.cc libtoo

centos 源码编译安装lnmp(linux + nginx1.5.5 + mysql5.5.21 + php5.3.27)

一:安装相关依赖组件 先yum安装基本的依赖组件: yum install make apr* autoconf automake gcc gcc-c++ zlib-devel openssl openssl-devel pcre-devel gd kernel keyutils patch perl kernel-headers compat* mpfr cpp glibc libgomp libstdc++-devel ppl cloog-ppl keyutils-libs-devel li

CentOS 6.6中编译安装Nginx1.6.2+MySQL5.6.21+PHP5.6.3的图文教程

  准备篇: 一.配置防火墙,开启80端口.3306端口 vi /etc/sysconfig/iptables #编辑防火墙配置文件 # Firewall configuration written by system-config-firewall # Manual customization of this file is not recommended. *filter :INPUT ACCEPT [0:0] :FORWARD ACCEPT [0:0] :OUTPUT ACCEPT [0:

编译安装php5.2.0时出错的解决方案

编译安装php5.2.0时出错解决方案 1.错误信息...................如下 checking for mcrypt support... no checking for mhash support... no checking whether to include mime_magic support... no checking for MING support... no checking for mSQL support... no checking for MSSQL

RHEL 6.1最小化编译安装Apache 2.2.21+MySQL 5.5.17+PHP 5.3.8+Zend Guard 5.5.0

操作系统:RHEL 6.1 32位下载地址:请自行下载,这里提供一个http://www.aliyun.com/zixun/aggregation/18479.html">下载地址,仅供参考ed2k://|file|[红帽企业Linux.6.1].rhel-server-6.1-i386-dvd.iso|3066486784|492a4ccae7c2c52cca87196c72a4e24f|h=hzsovcxap52sc2y2wfapxrratgnbpn72|/安装方式:采用最小化安装,在

CentOS上安装Git与编译安装git出错

编译基础环境环境  代码如下 复制代码 yum -y install gcc make   确保已安装了依赖的包  代码如下 复制代码 yum install -y curl curl-devel zlib-devel openssl-devel perl perl-devel cpio expat-devel gettext-devel   下载最新的git包  代码如下 复制代码 wget http://www.codemonkey.org.uk/projects/git-snapshots

CentOS 6.2编译安装Nginx1.0.14+MySQL5.5.22+PHP5.3.10步骤分享

说明: 操作系统:CentOS 6.2 32位 准备篇: 一.配置好IP.DNS .网关,确保使用远程连接工具能够连接服务器 二.配置防火墙,开启80端口.3306端口 vi /etc/sysconfig/iptables -A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT(允许80端口通过防火墙) -A INPUT -m state --state NEW -m tcp -p tcp --dport 3306 -j

Debian编译安装Nginx+MySQL+PHP-FPM环境详解

Linux环境:Debian 6 Stable 程序版本选择: Nginx:Tengine 1.2.4 淘宝出品,基于Nginx并引进了一些新特性 MySQL:5.1.66 5.1系列最新版.不用5.5的原因是5.5开始编译使用CMake,而资料比较少.(事实上wangyan的脚本使用的是5.5,但是当时我还没看到--) PHP:5.4.9 前几天刚出的Current Stable,自带FPM,与Nginx配合良好. 参考资料: 主要参考军哥的lnmp脚本和wangyan的lanmp脚本.军哥的

CentOS 5.10编译安装Nginx1.4.4+MySQL5.5.35+PHP5.3.28的教程

说明: 操作系统:CentOS 5.10 64位 准备篇: 一.配置好IP.DNS .网关,确保使用远程连接工具能够连接服务器,服务器时间设置正确   二.配置防火墙,开启80端口.3306端口 vi /etc/sysconfig/iptables  #编辑 -A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT  #允许80端口通过防火墙 -A RH-Firewall-1-INPUT -m s