由于GCC 7和GCC 8版本不再包含在默认的软件仓库中,不能直接通过apt install gcc-7
或apt install gcc-8
命令来安装这些版本。不过,可以通过添加Ubuntu 20.04(Focal Fossa)的软件仓库到系统来安装这些较旧的GCC版本,因为GCC 7和GCC 8在Ubuntu 20.04的仓库中仍然可用。
以下是安装GCC 7和GCC 8的步骤:
- 添加Ubuntu 20.04的软件仓库 :
打开/etc/apt/sources.list
文件,并添加以下行:
bash
deb [arch=amd64] http://archive.ubuntu.com/ubuntu focal main universe
这将让系统知道去哪里查找Ubuntu 20.04的软件包。
- 更新软件包列表 :
添加了新的软件仓库后,你需要更新你的软件包列表:
bash
sudo apt update
-
安装GCC 7和GCC 8 :
现在你可以安装GCC 7和GCC 8了:
bashsudo apt install gcc-7 g++-7 gcc-8 g++-8
-
配置更新替代方案 (可选):(没有使用)
置默认的GCC版本,可以使用
update-alternatives
:
bash
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-7 70
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-8 80
sudo update-alternatives --config gcc
这将选择默认的GCC版本。
- 验证安装 :
安装完成后,使用以下命令来验证GCC 7和GCC 8是否正确安装:
bash
gcc-7 --version
gcc-8 --version
bash
(base) ~$ gcc-7 --version
gcc-7 (Ubuntu 7.5.0-6ubuntu2) 7.5.0
Copyright (C) 2017 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.
(base) ~$ gcc-8 --version
gcc-8 (Ubuntu 8.4.0-3ubuntu2) 8.4.0
Copyright (C) 2018 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.
- 查看系统安装的gcc版本
bash
dpkg -l | grep gcc
我的系统中安装的版本:
bash
(base) ~$ dpkg -l | grep gcc
ii gcc 4:9.3.0-1ubuntu2 amd64 GNU C compiler
ii gcc-10-base:amd64 10.5.0-1ubuntu1~20.04 amd64 GCC, the GNU Compiler Collection (base package)
ii gcc-10-base:i386 10.5.0-1ubuntu1~20.04 i386 GCC, the GNU Compiler Collection (base package)
ii gcc-7 7.5.0-6ubuntu2 amd64 GNU C compiler
ii gcc-7-base:amd64 7.5.0-6ubuntu2 amd64 GCC, the GNU Compiler Collection (base package)
ii gcc-8 8.4.0-3ubuntu2 amd64 GNU C compiler
ii gcc-8-base:amd64 8.4.0-3ubuntu2 amd64 GCC, the GNU Compiler Collection (base package)
ii gcc-9 9.4.0-1ubuntu1~20.04.2 amd64 GNU C compiler
ii gcc-9-base:amd64 9.4.0-1ubuntu1~20.04.2 amd64 GCC, the GNU Compiler Collection (base package)
ii libgcc-7-dev:amd64 7.5.0-6ubuntu2 amd64 GCC support library (development files)
ii libgcc-8-dev:amd64 8.4.0-3ubuntu2 amd64 GCC support library (development files)
ii libgcc-9-dev:amd64 9.4.0-1ubuntu1~20.04.2 amd64 GCC support library (development files)
ii libgcc-s1:amd64 10.5.0-1ubuntu1~20.04 amd64 GCC support library
ii libgcc-s1:i386 10.5.0-1ubuntu1~20.04 i386 GCC support library
ii libuno-cppuhelpergcc3-3 1:6.4.7-0ubuntu0.20.04.12 amd64 LibreOffice UNO runtime environment -- CPPU helper library
ii libuno-purpenvhelpergcc3-3 1:6.4.7-0ubuntu0.20.04.12 amd64 LibreOffice UNO runtime environment -- "purpose environment" helper
ii libuno-salhelpergcc3-3 1:6.4.7-0ubuntu0.20.04.12 amd64 LibreOffice UNO runtime environment -- SAL helpers for C++ library
请注意,添加旧版本的软件仓库可能会让系统暴露在安全风险中,因为旧版本的软件包可能不会接收到安全更新。因此,只有在确实需要旧版本的GCC时才推荐这样做,并且在完成工作后,最好移除旧的软件仓库以避免将来的依赖问题。