sudo add-apt-repository ppa:ubuntu-toolchain-r/test
sudo apt-get update
#如果提示未安装,还需要先安装它的包:
sudo apt-get install software-properties-common
默认是gcc 5.4.0
sudo apt-get install gcc-5 g++-5
cd /usr/bin
sudo rm gcc
sudo ln -s gcc-5 gcc
sudo rm g++
sudo ln -s g++-5 g++
如果需要多个版本,以gcc7.5.0为例:
sudo add-apt-repository ppa:ubuntu-toolchain-r/test
sudo apt-get update
sudo apt-get install gcc-7
sudo apt-get install g++-7
在不同版本切换:
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-7 100
sudo update-alternatives --config gcc
sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-7 100
sudo update-alternatives --config g++
默认就变成gcc7.5.0了
#sudo update-alternatives --config gcc