正如大家所知道的GCC并不支持"make uninstall". 一种推荐安装方式就是把GCC 安装在你自己指定的一个路径,当你不需要某个GCC版本的时候你只需要移除对应版本即可。
假设你已经有一个老的版本在你的系统中,最简单的方式就是:
1)添加PPA(Personal Package Archive)到里的程序仓库(repositories )里
2更新程序仓库(repositoris)
3)升级程序
sudo add-apt-repository ppa:ubuntu-toolchain-r/test
sudo apt-get update
添加新 PPA(Peronal Package Archive) 到系统
删除 alternative
sudo update-alternatives --remove-all gcc
sudo update-alternatives --remove-all g++
然后:
sudo apt-get install gcc-4.8
sudo apt-get install g++-4.8
把gcc,g++ 安装为 alternatives
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.8 20
sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 20
sudo update-alternatives --config gcc
sudo update-alternatives --config g++
最后:
sudo apt-get update
sudo apt-get upgrade -y
sudo apt-get dist-upgrade
译者加:
测试升级效果
终端输入:gcc -v
终端输如下:
...
gcc version 4.8.1 (Ubuntu 4.8.1-2ubuntu1~10.04.1)
原文地址:http://askubuntu.com/questions/312620/how-do-i-install-gcc-4-8-1-on-ubuntu-13-04
UBUNTU 下怎样升级 gcc, g++,布布扣,bubuko.com
原文地址:http://blog.csdn.net/peng654321/article/details/27870389