多版本GCC安装及切换

目录

  • [1 背景](#1 背景)
  • [2 安装](#2 安装)
    • [2.1 Ubuntu 20.04](#2.1 Ubuntu 20.04)
    • [2.2 Ubuntu 18.04](#2.2 Ubuntu 18.04)
  • [3 配置](#3 配置)
  • [4 切换](#4 切换)
    • [4.1 切换到版本9](#4.1 切换到版本9)
    • [4.2 切换到版本10](#4.2 切换到版本10)

1 背景

最近在研究C++20中的协程需要安装GCC版本10。用到GCC多版本切换,记录步骤。

2 安装

2.1 Ubuntu 20.04

运行如下命令安装两个版本编译器:

bash 复制代码
sudo apt install gcc-9 g++-9
sudo apt install gcc-10 g++-10

2.2 Ubuntu 18.04

默认安装最高版本gcc-7,添加Toolchain Test Builds PPA(个人软件包存档),它提供了GCC 10的最新版本

bash 复制代码
sudo add-apt-repository ppa:ubuntu-toolchain-r/test
sudo apt install gcc-9 g++-9
sudo apt install gcc-10 g++-10

3 配置

使用update-alternatives命令配置多编译器版本:

bash 复制代码
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-9 90 --slave /usr/bin/g++ g++ /usr/bin/g++-9
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-10 100 --slave /usr/bin/g++ g++ /usr/bin/g++-10

说明:

  • gcc与g++版本绑定在一起了,修改gcc版本会同时修改g++版本

4 切换

使用如下命令切换编译器版本:

bash 复制代码
sudo update-alternatives --config gcc

4.1 切换到版本9

bash 复制代码
$ sudo update-alternatives --config gcc
There are 2 choices for the alternative gcc (providing /usr/bin/gcc).

  Selection    Path             Priority   Status
------------------------------------------------------------
* 0            /usr/bin/gcc-10   100       auto mode
  1            /usr/bin/gcc-10   100       manual mode
  2            /usr/bin/gcc-9    90        manual mode

Press <enter> to keep the current choice[*], or type selection number: 2

查看版本:

bash 复制代码
$ gcc --version
gcc (Ubuntu 9.4.0-1ubuntu1~20.04.3) 9.4.0
Copyright (C) 2019 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
$ g++ --version
g++ (Ubuntu 9.4.0-1ubuntu1~20.04.3) 9.4.0
Copyright (C) 2019 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

4.2 切换到版本10

bash 复制代码
$ sudo update-alternatives --config gcc
There are 2 choices for the alternative gcc (providing /usr/bin/gcc).

  Selection    Path             Priority   Status
------------------------------------------------------------
* 0            /usr/bin/gcc-10   100       auto mode
  1            /usr/bin/gcc-10   100       manual mode
  2            /usr/bin/gcc-9    90        manual mode

Press <enter> to keep the current choice[*], or type selection number: 1

查看版本:

bash 复制代码
$ gcc --version
gcc (Ubuntu 10.5.0-1ubuntu1~20.04) 10.5.0
Copyright (C) 2020 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
$ g++ --version
g++ (Ubuntu 10.5.0-1ubuntu1~20.04) 10.5.0
Copyright (C) 2020 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
相关推荐
人才程序员2 天前
CJson源码解析之cJSON_CreateObject函数
java·c语言·前端·数据结构·算法·c·gcc
Florian7 天前
仓颉语言HelloWorld内测【仅需三步】
华为·编译器·仓颉·方舟
Eloudy8 天前
hipcc 编译 amd gpu kernel 和 打包与解包的流程实验
编译器·llvm·gpu-arch
Eloudy1 个月前
^^ c++ 当然就是整个计算机科学
c++·算法·编译器·llvm·二进制分析
CodingCos1 个月前
【ARM 嵌入式 编译系列 2.7 -- GCC 编译优化参数 -fvar-tracking-assignments 详细介绍】
arm开发·gcc·gcc 优化参数
Eloudy1 个月前
libunwind 简介示例与详细示例
c++·编译器·二进制分析
键盘会跳舞2 个月前
CentOS 7 :虚拟机网络环境配置+ 安装gcc(新手进)
centos·gcc·网络设置
西门老铁2 个月前
编译原理极简入门:表达式求值
编译原理·编译器
0x2642 个月前
自己动手设计并实现一个动态类型编程语言
编程语言·编译器