Answers:
在您~/.bashrc
或~/.bash_profile
Simply源中,devtoolset随附的“启用”脚本。例如,对于Devtoolset 2,命令为:
source /opt/rh/devtoolset-2/enable
要么
source scl_source enable devtoolset-2
效率更高:没有前炸弹,没有棘手的外壳
/opt/rh/devtoolset-7/enable
的替代方案source /opt/rh/devtoolset-4/enable
是
source scl_source enable devtoolset-4
上面的Shell脚本scl_source
比使用硬编码的路径(在另一台机器上可能有所不同)更优雅。但是scl_source
由于/opt/rh/devtoolset-4/enable
用途scl_source
和其他方面的原因较少。
要使用scl_source
您可能需要升级软件包scl-utils
yum update scl-utils # old scl-utils versions miss scl_source
快速复制粘贴
echo 'source scl_source enable devtoolset-4' >> ~/.bashrc
# Do not forget to change the version ↑
好奇的人的源代码
scl_source
源代码示例:https :
//gist.github.com/bkabrda/6435016
将scl_source
在我的Red Hat 7.1安装
#!/bin/bash
_scl_source_help="Usage: source scl_source <action> [<collection> ...]
Don't use this script outside of SCL scriptlets!
Options:
-h, --help display this help and exit"
if [ $# -eq 0 -o $1 = "-h" -o $1 = "--help" ]; then
echo "$_scl_source_help"
return 0
fi
if [ -z "$_recursion" ]; then
_recursion="false"
fi
if [ -z "$_scl_scriptlet_name" ]; then
# The only allowed action in the case of recursion is the same
# as was the original
_scl_scriptlet_name=$1
fi
shift 1
if [ -z "$_scl_dir" ]; then
# No need to re-define the directory twice
_scl_dir=/etc/scl/conf
if [ ! -e $_scl_dir ]; then
_scl_dir=/etc/scl/prefixes
fi
fi
for arg in "$@"; do
_scl_prefix_file=$_scl_dir/$arg
_scl_prefix=`cat $_scl_prefix_file 2> /dev/null`
if [ $? -ne 0 ]; then
echo "Can't read $_scl_prefix_file, $arg is probably not installed."
return 1
fi
# First check if the collection is already in the list
# of collections to be enabled
for scl in ${_scls[@]}; do
if [ $arg == $scl ]; then
continue 2
fi
done
# Now check if the collection isn't already enabled
/usr/bin/scl_enabled $arg > /dev/null 2> /dev/null
if [ $? -ne 0 ]; then
_scls+=($arg)
_scl_prefixes+=($_scl_prefix)
fi;
done
if [ $_recursion == "false" ]; then
_i=0
_recursion="true"
while [ $_i -lt ${#_scls[@]} ]; do
_scl_scriptlet_path="${_scl_prefixes[$_i]}/${_scls[$_i]}/${_scl_scriptlet_name}"
source "$_scl_scriptlet_path"
if [ $? -ne 0 ]; then
echo "Can't source $_scl_scriptlet_name, skipping."
else
export X_SCLS="${_scls[$_i]} $X_SCLS"
fi;
_i=$(($_i+1))
done
_scls=()
_scl_prefixes=()
_scl_scriptlet_name=""
_recursion="false"
fi
问题是scl enable devtoolset-1.1 bash
创建了一个新的bash shell。因此,当您将其放入.bashrc中时,它会创建一个新的shell ...它将加载您的.bashrc,该scl enable devtoolset-1.1 bash
shell 将运行,这将创建一个新的shell,该外壳将加载您的.bashrc ... Forkbomb!
您可能在.bashrc中需要这样的内容:
if [ "$(gcc -dumpversion)" != "4.7.2" ]; then
scl enable devtoolset-1.1 bash
fi
要么
if [ -z "$TRIEDSCLDEVTOOLSET" ]; then
export TRIEDSCLDEVTOOLSET=true
scl enable devtoolset-1.1 bash
fi
exit
两次。scl enable
它。
scl enable
每次打开新的ssh会话时我都必须运行。对于这些令人讨厌的问题,我深表歉意,但是我不确定如何将较新版本设置为默认版本。我的bash配置文件中是否需要导出一个环境变量?
sudo apt-get install gcc
。在CentOS上,这是yum,例如sudo yum install gcc
。
sudo yum update && sudo yum install gcc
检查一下gcc --version
。如果不是4.7,则可能必须使用devtoolset。如果您不想在SCL中运行它,则可以使用卸载本机gcc,sudo yum remove gcc
然后将devtoolset目录添加到路径中,即放入export PATH=$PATH:/opt/centos/devtoolset-1.1/root/usr/bin
.bashrc中。这将使您键入gcc
或g++
并获得devtoolset gcc4.7。