当前位置:   article > 正文

Ubuntu :20.04 上安装 gcc/g++7.5_error: no compilers for operating system ubuntu22.

error: no compilers for operating system ubuntu22.04 satisfy spec gcc@7.5.0

一、在 Ubuntu 20.04 上安装 GCC

默认的 Ubuntu 软件源包含了一个软件包组,名称为 “build-essential”,它包含了 GNU 编辑器集合,GNU 调试器,和其他编译软件所必需的开发库和工具。

想要安装开发工具软件包,以 拥有 sudo 权限用户身份或者 root 身份运行下面的命令:

  1. sudo apt update
  2. sudo apt install build-essential

这个命令将会安装一系列软件包,包括gcc,g++,和make

你可能还想安装关于如何使用 GNU/Linux开发的手册。

sudo apt-get install manpages-dev

通过运行下面的命令,打印 GCC 版本,来验证 GCC 编译器是否被成功地安装。

gcc --version

在 Ubuntu 20.04 软件源中 GCC 的默认可用版本号为9.4.0:

  1. $ gcc --version
  2. gcc (Ubuntu 9.3.0-10ubuntu2) 9.3.0
  3. Copyright (C) 2019 Free Software Foundation, Inc.
  4. This is free software; see the source for copying conditions. There is NO
  5. warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

GCC 已经在你的 Ubuntu 系统上安装好了,你可以开始使用它了。

二 、在 Ubuntu 20.04 上安装 GCC7.5

有时候因为Ubuntu20.04的gcc版本太高导致不兼容,需要将gcc将低到7.5版本。

安装步骤:

输入下面的命令,安装想要的 GCC 和 G++ :

sudo apt install gcc-7 g++-7

下面的命令配置每一个版本,并且设置了优先级。默认的版本是拥有最高优先级的那个,在我们的场景中是gcc-7

  1. sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-9 90 --slave /usr/bin/g++ g++ /usr/bin/g++-9 --slave /usr/bin/gcov gcov /usr/bin/gcov-9
  2. sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-7 70 --slave /usr/bin/g++ g++ /usr/bin/g++-7 --slave /usr/bin/gcov gcov /usr/bin/gcov-7

然后,如果你想修改默认的版本,使用update-alternatives命令:

sudo update-alternatives --config gcc

该命令会展示一系列已经安装在你的 Ubuntu 系统上的 GCC 版本。输入你想设置为默认的 GCC 版本,并且按回车Enter

输出:

  1. There are 2 choices for the alternative gcc (providing /usr/bin/gcc).
  2. Selection Path Priority Status
  3. ------------------------------------------------------------
  4. * 0 /usr/bin/gcc-9 90 auto mode
  5. 1 /usr/bin/gcc-7 70 manual mode
  6. 2 /usr/bin/gcc-9 90 manual mode
  7. Press <enter> to keep the current choice[*], or type selection number: 1
  8. update-alternatives: using /usr/bin/gcc-7 to provide /usr/bin/gcc (gcc) in manual mode

例如以上选择number:1,这个命令将会创建符号链接到指定版本的 GCC 和 G++。

再次查看gcc版本,显示为7.5版本:

  1. Using built-in specs.
  2. COLLECT_GCC=gcc
  3. COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper
  4. OFFLOAD_TARGET_NAMES=nvptx-none
  5. OFFLOAD_TARGET_DEFAULT=1
  6. Target: x86_64-linux-gnu
  7. Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.5.0-6ubuntu2' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
  8. Thread model: posix
  9. gcc version 7.5.0 (Ubuntu 7.5.0-6ubuntu2)

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/不正经/article/detail/261053
推荐阅读
相关标签
  

闽ICP备14008679号