系统相关
首页 > 系统相关> > ubuntu18.04 安装gcc7,g++7

ubuntu18.04 安装gcc7,g++7

作者:互联网

下载并安装gcc编译安装包

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++

查看版本,检查是否安装成功

gcc --version

g++ --version

 

标签:gcc,++,sudo,alternatives,update,gcc7,--,ubuntu18.04
来源: https://www.cnblogs.com/-yhwu/p/15175451.html