ubuntu16.04 更新gcc版本 以及安装多个gcc版本

 

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

 

    原文作者:yxpandjay
    原文地址: https://blog.csdn.net/yxpandjay/article/details/103769771
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞