CentOS6.2 GCC4.4.6升级到4.6.1[编译]

参考自:http://chinaapp.sinaapp.com/thread-2134-1-1.html

升级的原因是因为在编译mysql和pcre的时候都遇到了一个错误:

/usr/include/*****.h:** internal compiler error: Segmentation fault
Please submit a full bug report,
with preprocessed source if appropriate.
See <http://bugzilla.redhat.com/bugzilla> for instructions.

google说换GCC版本可以解决。

VPS机器环境:

os:
CentOS release 6.2 (Final)
GCC:
Installed Packages
Name        : gcc
Arch        : x86_64
Version     : 4.4.6
Release     : 3.el6
Size        : 18 M
Repo        : installed
From repo   : anaconda-CentOS-201112091719.x86_64

yum update和upgrade都没有反应。所以只能自己编译

基本参考原文做的,有个小问题就是,copy他的命令里的横杠(-)有问题,这里我替换过了。后面再做个ldconfig补充

----------------------------start----------------------------------

下载:

下载以下包:gcc-4.6.1.tar.bz2 gmp-4.3.2.tar.bz2 mpc-0.8.1.tar.gz mpfr-2.4.2.tar.bz2

wget ftp://gcc.gnu.org/pub/gcc/infrastructure/{gmp-4.3.2.tar.bz2,mpc-0.8.1.tar.gz,mpfr-2.4.2.tar.bz2}
wget http://ftp.gnu.org/gnu/gcc/gcc-4.6.1/gcc-4.6.1.tar.bz2

安装:

#!/bin/sh
##auto make install gcc
##2012-07-02

tar jxf gmp-4.3.2.tar.bz2 &&cd gmp-4.3.2/
./configure --prefix=/usr/local/gmp
make &&make install

sleep 1

cd ../ ;tar jxf mpfr-2.4.2.tar.bz2 ;cd mpfr-2.4.2/
./configure --prefix=/usr/local/mpfr -with-gmp=/usr/local/gmp
make &&make install

cd ../ ;tar xzf mpc-0.8.1.tar.gz ;cd mpc-0.8.1
./configure --prefix=/usr/local/mpc -with-mpfr=/usr/local/mpfr -with-gmp=/usr/local/gmp
make &&make install

cd ../ ;tar jxf gcc-4.6.1.tar.bz2 ;cd gcc-4.6.1
./configure --prefix=/usr/local/gcc -enable-threads=posix -disable-checking -disable-multilib -enable-languages=c,c++ -with-gmp=/usr/local/gmp -with-mpfr=/usr/local/mpfr/ -with-mpc=/usr/local/mpc/

if
[ $? -eq 0 ];then
echo “This gcc configure is success”
else
echo “This gcc configure is failed”
fi

#如果make的时候报错,多半是下面这句没执行到,你可以echo $LD_LIBRARY_PATH,看有值木有,木有就单独执行一次这句
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/mpc/lib:/usr/local/gmp/lib:/usr/local/mpfr/lib/

make && make install

[ $? -eq 0 ]&&echo This is make install success

使用:
现在还不能完全编译一些东西,因为一些需要用到的lib还没有加入默认路径:

#先确认你的/etc/ld.so.conf里面有这一句:include ld.so.conf.d/*.conf
#没有就加上
#然后在下面文件夹里新建gcc4.6.1.conf文件,填入lib路径
vi /etc/ld.so.conf.d/gcc.4.6.1.conf
#填入如下内容:
/usr/local/gcc/lib/
/usr/local/mpc/lib/
/usr/local/gmp/lib/
/usr/local/mpfr/lib/
#保存
#运行命令:
ldconfig

#关于ldconfig可搜索 ldconfig LD_LIBRARY_PATH 查阅相关资料


好了,最后一步,先把老的备个份,再建立软链:

mv /usr/bin/gcc  /usr/bin/gcc_old
mv /usr/bin/g++  /usr/bin/g++_old

ln -s /usr/local/gcc/bin/gcc  /usr/bin/gcc
ln -s /usr/local/gcc/bin/g++  /usr/bin/g++

#查看下是否可用,版本多少
gcc -v

你可能感兴趣的:(centos,编译gcc)