在ubuntu 14.04 LTS上编译fileZilla

时间:2015-11-01 21:10:03

标签: c++ ubuntu gcc

我正在尝试从其源代码编译FileZilla。 它需要C ++ 14支持,需要gcc4.9。 无论版本高于4.8,我尝试安装,没有变化。

gcc4.9不适用于上述ubuntu版本吗?

我得到的错误是:

checking whether g++ supports C++14 features by default... no
checking whether g++ supports C++14 features with -std=gnu++14... no
checking whether g++ supports C++14 features with -std=gnu++1y... no
checking whether g++ supports C++14 features with -std=c++14... no
checking whether g++ supports C++14 features with -std=c++1y... no
configure: error: *** A compiler with support for C++14 language features is required

有人可以帮忙吗?

1 个答案:

答案 0 :(得分:7)

要安装gcc-4.9 g ++ - 4.9可能会有所帮助,并将其设置为默认gcc。

sudo add-apt-repository ppa:ubuntu-toolchain-r/test
sudo apt-get update
sudo apt-get install gcc-4.9 g++-4.9
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.9 60 --slave /usr/bin/g++ g++ /usr/bin/g++-4.9

然后gcc-4.9将在您的ubuntu版本中提供。

注意:我的版本是ubuntu 14.04