RedHat由于稳定等因素不会安装较新的软件,所以很多常用的新功能不能使用,譬如c++11
就不能在其gcc上编译,而重新编译又可能带来未知的错误和麻烦,这里介绍如何使用devtoolset2
来使用新的gcc版本。
首先更新rpm的key
sudo rpm --import http://ftp.scientificlinux.org/linux/scientific/5x/x86_64/RPM-GPG-KEYs/RPM-GPG-KEY-cern
获取其容器位置
wget -O /etc/yum.repos.d/slc6-devtoolset.repo http://linuxsoft.cern.ch/cern/devtoolset/slc6-devtoolset.repo
安装devtoolset
sudo yum install devtoolset-2
启动devtoolset2
环境
scl enable devtoolset-2 bash
注意,当下次你重新连接服务器的时候,gcc等东西都会回到原始状态,还需要输入上面的指令再次进入环境。
好了,看一下现在的gcc版本的变化吧
> gcc --version
gcc (GCC) 4.4.7 20120313 (Red Hat 4.4.7-11)
Copyright © 2010 Free Software Foundation, Inc.
本程序是自由软件;请参看源代码的版权声明。本软件没有任何担保;
包括没有适销性和某一专用目的下的适用性担保。
gcc --version
gcc (GCC) 4.8.2 20140120 (Red Hat 4.8.2-15)
Copyright (C) 2013 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.
网友评论