Post

Ubuntu18.04下安装高版本gcc并处理版本控制

Ubuntu18.04

在这个发行版下默认的安装gcc版本是7.50的,但在做cs144的时候发现他的cmake里写死的gcc支持就在gcc-8以上了,如果不改cmake代码的话,就只能手动安装更高版本的gcc了。详细的gcc关于c++的特性支持可以看cxx-status.

PPA(Personal Package Archive)

PPA不在Ubuntu默认的软件仓库,每个Ubuntu都有自己的四个官方App Repo

  • Main - Canonical 支持的自由开源软件。
  • Universe - 社区维护的自由开源软件。
  • Restricted - 设备的专有驱动程序。
  • Multiverse - 受版权或法律问题限制的软件。

比如/ubuntu/dists就可以看到所有发行过的ubuntu版本的所有的仓库。

PPA其实只是一个类似做存储的网址,可以使用PPA源获取到不在官方源里的软件。

这里还有一份详细的Apt使用指南, 可以做进一步的阅读。

使用PPA并换源

这里以安装更高版本的gcc为例, 12.10以上的系统add-apt-repository是由software-properties-common提供的,所以需要提前安装, 12.04和以下的系统, 需要安装python-software-properties

1
2
3
4
sudo apt install software-properties-common 
# sudo apt-get install python-software-properties
sudo add-apt-repository ppa:ubuntu-toolchain-r/test
sudo apt update

如果要删除当前源, 进入cd /etc/apt/sources.list.d删除相应的PPA既可。

1
cd /etc/apt/sources.list.d/

另外很多PPA的连接稳定性很差,所以换源是十分必要的,比如,针对ubuntu-toolchain-r-ubuntu-test-bionic.list, 简单的把http://ppa.launchpad.net换成下面的样子就可以了。

1
2
deb https://launchpad.proxy.ustclug.org/ubuntu-toolchain-r/test/ubuntu bionic main
# deb-src https://launchpad.proxy.ustclug.org/ubuntu-toolchain-r/test/ubuntu bionic main

安装GCC-11并配置版本控制

安装完gcc之后, 可以将其用update-alternatives管理起来,其实就是符号链接的管理

1
2
3
sudo apt install gcc-11 g++-11
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-11 90 --slave /usr/bin/g++ g++ /usr/bin/g++-11
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-7 40 --slave /usr/bin/g++ g++ /usr/bin/g++-7

如果要配置gcc的默认版本的话

1
sudo update-alternatives --config gcc

如果要移除某个版本的话

1
2
# --remove <name> <path>
sudo update-alternatives --remove gcc /usr/bin/gcc-7

Ref

  1. 如何在 Ubuntu 18.04 LTS 系统中安装多版本 GCC 编译器
This post is licensed under CC BY 4.0 by the author.

Trending Tags