环境: Ubuntu 16.04 64-bits (VM)
在ubuntu 16.04的环境下,默认安装的gcc, g++版本为:
sudo apt-get install gcc, g++
1、安装 gcc-7
sudo add-apt-repository ppa:jonathonf/gcc-7.1
sudo apt-get update
sudo apt-get install gcc-7
2、设置多个版本gcc
update-alternatives --install <link> <name> <path> <priority>
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-5 50
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-7 70
可以用命令查看或更改 gcc 版本:
sudo update-alternatives --config gcc
网友评论