sh 在debian中切换gcc版本
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh 在debian中切换gcc版本相关的知识,希望对你有一定的参考价值。
#install new versions of gcc and g++
sudo apt-get install gcc-4.8 g++-4.8
#remove existing alternatives
sudo update-alternatives --remove-all gcc
sudo update-alternatives --remove-all g++
#add new and old version to update-alternatives db
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.8 40 --slave /usr/bin/g++ g++ /usr/bin/g++-4.8
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-8 40 --slave /usr/bin/g++ g++ /usr/bin/g++-8
#choose the needed version
sudo update-alternatives --config gcc
以上是关于sh 在debian中切换gcc版本的主要内容,如果未能解决你的问题,请参考以下文章
Debian GNU/Linux 9 将切换至GCC6 编译器
debian6.0 安装gcc出现如下错误。。
linux服务器如何切换pytorch版本
sh 在Kali Linux(或任何其他基于Wheezy的Debian版本)上安装docker
在 mac 上切换 gcc 版本
Debian中如何切换默认Python版本