Linux Mint の GCC 最終更新

Linux Mint の GCC 最終更新

Linux Mint で gcc を更新しましたが、確認したところインストールされていないようです。何が問題なのでしょうか?

joseph@joseph:~$ sudo apt install gcc-9
Reading package lists... Done
Building dependency tree       
Reading state information... Done
gcc-9 is already the newest version (9.2.1-17ubuntu1~18.04.1).
The following packages were automatically installed and are no longer required:
  codeblocks-common libcodeblocks0 libwxbase3.0-0v5 libwxgtk3.0-0v5
Use 'sudo apt autoremove' to remove them.
0 upgraded, 0 newly installed, 0 to remove and 240 not upgraded.

joseph@joseph:~$ gcc --version
gcc (Ubuntu 7.5.0-3ubuntu1~18.04) 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.

答え1

Debian ベースのディストリビューションでは、同じソフトウェアの複数のバージョンが存在する場合があります。

を確認します。 が へのシンボリックリンクであり、 が へのシンボリックリンクである/usr/bin/gccことがわかります。/etc/alternatives/gcc/usr/bin/gcc-7

このコマンドでupdate-alternatives --config gccは、正しいバージョンを選択するオプションが提供されます。

gcc-7 を削除すると、別の代替案が自動的に選択されます。

関連情報