UBuntu12.04.2 安装 GCC4.7.X

参考下面的步骤:

1. 安装 python-software-properties

apt-get install python-software-properties

2.添加源:

add-apt-repository ppa:ubuntu-toolchain-r/test

3.update

apt-get update

4.安装

apt-get install gcc-4.7
apt-get install g++-4.7

5.修改链接

rm /usr/bin/g++
ln -s /usr/bin/g++-4.7 /usr/bin/g++

rm /usr/bin/gcc
ln -s /usr/bin/gcc-4.7 /usr/bin/gcc


也可以用alternative工具帮助设置,不过要花点时间学一下:

http://askubuntu.com/questions/26498/choose-gcc-and-g-version/26518#26518


你可能感兴趣的:(UBuntu12.04.2 安装 GCC4.7.X)