ubuntu16.04 安装gcc7,g++7
作者:互联网
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
配置:将gcc7,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++
标签:ubuntu16.04,gcc,++,sudo,alternatives,update,apt,gcc7 来源: https://www.cnblogs.com/laterzh2022/p/16273201.html