我正在使用 codenvy,它使用 GCC 5.4 运行 Ubuntu。我想将其中的 C++ 更新为 C++1z。我已经使用此命令安装了 GCC 7
$ sudo apt-get install software-properties-common python-software-properties
$ sudo add-apt-repository ppa:jonathonf/gcc-7.1
$ sudo apt-get update
$ sudo apt-get install gcc-7 g++-7
但主要的 GCC 仍然过时:
$ g++ --version
g++ (Ubuntu 5.4.0-6ubuntu1~16.04.4) 5.4.0 20160609
Copyright (C) 2015 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.
Ubuntu 版本:
$ cat /etc/lsb*
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=16.04
DISTRIB_CODENAME=xenial
DISTRIB_DESCRIPTION="Ubuntu 16.04.3 LTS"
我是 Linux 新手,以前用的是 Windows。我需要做什么?
编辑
我刚刚尝试过sudo update-alternatives
,但输出显示没有 gcc/g++ 的更新替代品