下载安装
sudo add-apt-repository ppa:ubuntu-toolchain-r/test
sudo apt-get update
sudo apt-get install gcc-9
sudo apt-get install g++-9
配置为默认选项
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-9 100
sudo update-alternatives --config gcc
sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-9 100
sudo update-alternatives --config g++
查看已安装的版本信息
gcc --version
g++ --version
ubuntu16.04升级gcc和g++ | 码农家园 (codenong.com)
标签:gcc,++,sudo,alternatives,update,--,ubuntu From: https://www.cnblogs.com/kernelx/p/17296135.html